@inkeep/agents-core 0.0.0-dev-20260212083055 → 0.0.0-dev-20260212092330
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.d.ts +19 -19
- package/dist/auth/permissions.d.ts +9 -9
- package/dist/data-access/index.d.ts +2 -1
- package/dist/data-access/index.js +2 -1
- package/dist/data-access/manage/skills.d.ts +1 -1
- package/dist/data-access/runtime/conversations.d.ts +11 -11
- package/dist/data-access/runtime/tasks.d.ts +2 -2
- package/dist/data-access/runtime/workAppSlack.d.ts +55 -0
- package/dist/data-access/runtime/workAppSlack.js +146 -0
- package/dist/db/manage/manage-schema.d.ts +323 -323
- package/dist/db/runtime/runtime-schema.d.ts +948 -214
- package/dist/db/runtime/runtime-schema.js +77 -2
- package/dist/index.d.ts +6 -2
- package/dist/index.js +6 -2
- package/dist/utils/index.d.ts +4 -1
- package/dist/utils/index.js +4 -1
- package/dist/utils/slack-link-token.d.ts +57 -0
- package/dist/utils/slack-link-token.js +112 -0
- package/dist/utils/slack-user-token.d.ts +65 -0
- package/dist/utils/slack-user-token.js +129 -0
- package/dist/utils/sse-parser.d.ts +35 -0
- package/dist/utils/sse-parser.js +71 -0
- package/dist/utils/trigger-auth.d.ts +1 -1
- package/dist/validation/dolt-schemas.d.ts +1 -1
- package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
- package/dist/validation/schemas.d.ts +1444 -1444
- package/drizzle/runtime/0012_greedy_hulk.sql +84 -0
- package/drizzle/runtime/meta/0012_snapshot.json +3622 -0
- package/drizzle/runtime/meta/_journal.json +7 -0
- package/package.json +1 -1
|
@@ -2,11 +2,11 @@ import { Part } from "../../types/a2a.js";
|
|
|
2
2
|
import { ConversationMetadata, MessageContent, MessageMetadata, TaskMetadataConfig } from "../../types/utility.js";
|
|
3
3
|
import { account, deviceCode, invitation, member, organization, session, ssoProvider, user, verification } from "../../auth/auth-schema.js";
|
|
4
4
|
import * as drizzle_orm103 from "drizzle-orm";
|
|
5
|
-
import * as
|
|
5
|
+
import * as drizzle_orm_pg_core533 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 {
|
|
9
|
-
export { account, apiKeys, contextCache, conversations, conversationsRelations, datasetRun, datasetRunConversationRelations, deviceCode, evaluationResult, evaluationRun, invitation, ledgerArtifacts, ledgerArtifactsRelations, member, messages, messagesRelations, organization, projectMetadata, session, ssoProvider, taskRelations, taskRelationsRelations, tasks, tasksRelations, triggerInvocations, user, verification, workAppGitHubInstallations, workAppGitHubInstallationsRelations, workAppGitHubMcpToolAccessMode, workAppGitHubMcpToolRepositoryAccess, workAppGitHubMcpToolRepositoryAccessRelations, workAppGitHubProjectAccessMode, workAppGitHubProjectRepositoryAccess, workAppGitHubProjectRepositoryAccessRelations, workAppGitHubRepositories, workAppGitHubRepositoriesRelations };
|
|
9
|
+
export { account, apiKeys, contextCache, conversations, conversationsRelations, datasetRun, datasetRunConversationRelations, deviceCode, evaluationResult, evaluationRun, invitation, ledgerArtifacts, ledgerArtifactsRelations, member, messages, messagesRelations, organization, projectMetadata, session, ssoProvider, taskRelations, taskRelationsRelations, tasks, tasksRelations, triggerInvocations, user, verification, workAppGitHubInstallations, workAppGitHubInstallationsRelations, workAppGitHubMcpToolAccessMode, workAppGitHubMcpToolRepositoryAccess, workAppGitHubMcpToolRepositoryAccessRelations, workAppGitHubProjectAccessMode, workAppGitHubProjectRepositoryAccess, workAppGitHubProjectRepositoryAccessRelations, workAppGitHubRepositories, workAppGitHubRepositoriesRelations, workAppSlackChannelAgentConfigs, workAppSlackUserMappings, workAppSlackWorkspaces };
|
|
10
10
|
}
|
|
11
11
|
/**
|
|
12
12
|
* Runtime projects table - source of truth for which projects exist in a tenant.
|
|
@@ -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_core533.PgTableWithColumns<{
|
|
19
19
|
name: "project_metadata";
|
|
20
20
|
schema: undefined;
|
|
21
21
|
columns: {
|
|
22
|
-
id:
|
|
22
|
+
id: drizzle_orm_pg_core533.PgColumn<{
|
|
23
23
|
name: "id";
|
|
24
24
|
tableName: "project_metadata";
|
|
25
25
|
dataType: "string";
|
|
@@ -38,7 +38,7 @@ declare const projectMetadata: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
38
38
|
}, {}, {
|
|
39
39
|
length: 256;
|
|
40
40
|
}>;
|
|
41
|
-
tenantId:
|
|
41
|
+
tenantId: drizzle_orm_pg_core533.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_core1695.PgTableWithColumns<{
|
|
|
57
57
|
}, {}, {
|
|
58
58
|
length: 256;
|
|
59
59
|
}>;
|
|
60
|
-
createdAt:
|
|
60
|
+
createdAt: drizzle_orm_pg_core533.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_core1695.PgTableWithColumns<{
|
|
|
74
74
|
identity: undefined;
|
|
75
75
|
generated: undefined;
|
|
76
76
|
}, {}, {}>;
|
|
77
|
-
createdBy:
|
|
77
|
+
createdBy: drizzle_orm_pg_core533.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_core1695.PgTableWithColumns<{
|
|
|
93
93
|
}, {}, {
|
|
94
94
|
length: 256;
|
|
95
95
|
}>;
|
|
96
|
-
mainBranchName:
|
|
96
|
+
mainBranchName: drizzle_orm_pg_core533.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_core1695.PgTableWithColumns<{
|
|
|
115
115
|
};
|
|
116
116
|
dialect: "pg";
|
|
117
117
|
}>;
|
|
118
|
-
declare const conversations:
|
|
118
|
+
declare const conversations: drizzle_orm_pg_core533.PgTableWithColumns<{
|
|
119
119
|
name: "conversations";
|
|
120
120
|
schema: undefined;
|
|
121
121
|
columns: {
|
|
122
|
-
createdAt:
|
|
122
|
+
createdAt: drizzle_orm_pg_core533.PgColumn<{
|
|
123
123
|
name: "created_at";
|
|
124
124
|
tableName: "conversations";
|
|
125
125
|
dataType: "string";
|
|
@@ -136,7 +136,7 @@ declare const conversations: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
136
136
|
identity: undefined;
|
|
137
137
|
generated: undefined;
|
|
138
138
|
}, {}, {}>;
|
|
139
|
-
updatedAt:
|
|
139
|
+
updatedAt: drizzle_orm_pg_core533.PgColumn<{
|
|
140
140
|
name: "updated_at";
|
|
141
141
|
tableName: "conversations";
|
|
142
142
|
dataType: "string";
|
|
@@ -153,7 +153,7 @@ declare const conversations: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
153
153
|
identity: undefined;
|
|
154
154
|
generated: undefined;
|
|
155
155
|
}, {}, {}>;
|
|
156
|
-
userId:
|
|
156
|
+
userId: drizzle_orm_pg_core533.PgColumn<{
|
|
157
157
|
name: "user_id";
|
|
158
158
|
tableName: "conversations";
|
|
159
159
|
dataType: "string";
|
|
@@ -172,7 +172,7 @@ declare const conversations: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
172
172
|
}, {}, {
|
|
173
173
|
length: 256;
|
|
174
174
|
}>;
|
|
175
|
-
agentId:
|
|
175
|
+
agentId: drizzle_orm_pg_core533.PgColumn<{
|
|
176
176
|
name: "agent_id";
|
|
177
177
|
tableName: "conversations";
|
|
178
178
|
dataType: "string";
|
|
@@ -191,7 +191,7 @@ declare const conversations: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
191
191
|
}, {}, {
|
|
192
192
|
length: 256;
|
|
193
193
|
}>;
|
|
194
|
-
activeSubAgentId:
|
|
194
|
+
activeSubAgentId: drizzle_orm_pg_core533.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_core1695.PgTableWithColumns<{
|
|
|
210
210
|
}, {}, {
|
|
211
211
|
length: 256;
|
|
212
212
|
}>;
|
|
213
|
-
ref:
|
|
213
|
+
ref: drizzle_orm_pg_core533.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_core1695.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_core533.PgColumn<{
|
|
241
241
|
name: "title";
|
|
242
242
|
tableName: "conversations";
|
|
243
243
|
dataType: "string";
|
|
@@ -254,7 +254,7 @@ declare const conversations: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
254
254
|
identity: undefined;
|
|
255
255
|
generated: undefined;
|
|
256
256
|
}, {}, {}>;
|
|
257
|
-
lastContextResolution:
|
|
257
|
+
lastContextResolution: drizzle_orm_pg_core533.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_core1695.PgTableWithColumns<{
|
|
|
271
271
|
identity: undefined;
|
|
272
272
|
generated: undefined;
|
|
273
273
|
}, {}, {}>;
|
|
274
|
-
metadata:
|
|
274
|
+
metadata: drizzle_orm_pg_core533.PgColumn<{
|
|
275
275
|
name: "metadata";
|
|
276
276
|
tableName: "conversations";
|
|
277
277
|
dataType: "json";
|
|
@@ -290,7 +290,7 @@ declare const conversations: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
290
290
|
}, {}, {
|
|
291
291
|
$type: ConversationMetadata;
|
|
292
292
|
}>;
|
|
293
|
-
projectId:
|
|
293
|
+
projectId: drizzle_orm_pg_core533.PgColumn<{
|
|
294
294
|
name: "project_id";
|
|
295
295
|
tableName: "conversations";
|
|
296
296
|
dataType: "string";
|
|
@@ -309,7 +309,7 @@ declare const conversations: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
309
309
|
}, {}, {
|
|
310
310
|
length: 256;
|
|
311
311
|
}>;
|
|
312
|
-
tenantId:
|
|
312
|
+
tenantId: drizzle_orm_pg_core533.PgColumn<{
|
|
313
313
|
name: "tenant_id";
|
|
314
314
|
tableName: "conversations";
|
|
315
315
|
dataType: "string";
|
|
@@ -328,7 +328,7 @@ declare const conversations: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
328
328
|
}, {}, {
|
|
329
329
|
length: 256;
|
|
330
330
|
}>;
|
|
331
|
-
id:
|
|
331
|
+
id: drizzle_orm_pg_core533.PgColumn<{
|
|
332
332
|
name: "id";
|
|
333
333
|
tableName: "conversations";
|
|
334
334
|
dataType: "string";
|
|
@@ -350,11 +350,11 @@ declare const conversations: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
350
350
|
};
|
|
351
351
|
dialect: "pg";
|
|
352
352
|
}>;
|
|
353
|
-
declare const tasks:
|
|
353
|
+
declare const tasks: drizzle_orm_pg_core533.PgTableWithColumns<{
|
|
354
354
|
name: "tasks";
|
|
355
355
|
schema: undefined;
|
|
356
356
|
columns: {
|
|
357
|
-
createdAt:
|
|
357
|
+
createdAt: drizzle_orm_pg_core533.PgColumn<{
|
|
358
358
|
name: "created_at";
|
|
359
359
|
tableName: "tasks";
|
|
360
360
|
dataType: "string";
|
|
@@ -371,7 +371,7 @@ declare const tasks: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
371
371
|
identity: undefined;
|
|
372
372
|
generated: undefined;
|
|
373
373
|
}, {}, {}>;
|
|
374
|
-
updatedAt:
|
|
374
|
+
updatedAt: drizzle_orm_pg_core533.PgColumn<{
|
|
375
375
|
name: "updated_at";
|
|
376
376
|
tableName: "tasks";
|
|
377
377
|
dataType: "string";
|
|
@@ -388,7 +388,7 @@ declare const tasks: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
388
388
|
identity: undefined;
|
|
389
389
|
generated: undefined;
|
|
390
390
|
}, {}, {}>;
|
|
391
|
-
contextId:
|
|
391
|
+
contextId: drizzle_orm_pg_core533.PgColumn<{
|
|
392
392
|
name: "context_id";
|
|
393
393
|
tableName: "tasks";
|
|
394
394
|
dataType: "string";
|
|
@@ -407,13 +407,13 @@ declare const tasks: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
407
407
|
}, {}, {
|
|
408
408
|
length: 256;
|
|
409
409
|
}>;
|
|
410
|
-
ref:
|
|
410
|
+
ref: drizzle_orm_pg_core533.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_core1695.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_core533.PgColumn<{
|
|
438
438
|
name: "status";
|
|
439
439
|
tableName: "tasks";
|
|
440
440
|
dataType: "string";
|
|
@@ -453,7 +453,7 @@ declare const tasks: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
453
453
|
}, {}, {
|
|
454
454
|
length: 256;
|
|
455
455
|
}>;
|
|
456
|
-
metadata:
|
|
456
|
+
metadata: drizzle_orm_pg_core533.PgColumn<{
|
|
457
457
|
name: "metadata";
|
|
458
458
|
tableName: "tasks";
|
|
459
459
|
dataType: "json";
|
|
@@ -472,7 +472,7 @@ declare const tasks: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
472
472
|
}, {}, {
|
|
473
473
|
$type: TaskMetadataConfig;
|
|
474
474
|
}>;
|
|
475
|
-
subAgentId:
|
|
475
|
+
subAgentId: drizzle_orm_pg_core533.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_core1695.PgTableWithColumns<{
|
|
|
491
491
|
}, {}, {
|
|
492
492
|
length: 256;
|
|
493
493
|
}>;
|
|
494
|
-
agentId:
|
|
494
|
+
agentId: drizzle_orm_pg_core533.PgColumn<{
|
|
495
495
|
name: "agent_id";
|
|
496
496
|
tableName: "tasks";
|
|
497
497
|
dataType: "string";
|
|
@@ -510,7 +510,7 @@ declare const tasks: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
510
510
|
}, {}, {
|
|
511
511
|
length: 256;
|
|
512
512
|
}>;
|
|
513
|
-
projectId:
|
|
513
|
+
projectId: drizzle_orm_pg_core533.PgColumn<{
|
|
514
514
|
name: "project_id";
|
|
515
515
|
tableName: "tasks";
|
|
516
516
|
dataType: "string";
|
|
@@ -529,7 +529,7 @@ declare const tasks: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
529
529
|
}, {}, {
|
|
530
530
|
length: 256;
|
|
531
531
|
}>;
|
|
532
|
-
tenantId:
|
|
532
|
+
tenantId: drizzle_orm_pg_core533.PgColumn<{
|
|
533
533
|
name: "tenant_id";
|
|
534
534
|
tableName: "tasks";
|
|
535
535
|
dataType: "string";
|
|
@@ -548,7 +548,7 @@ declare const tasks: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
548
548
|
}, {}, {
|
|
549
549
|
length: 256;
|
|
550
550
|
}>;
|
|
551
|
-
id:
|
|
551
|
+
id: drizzle_orm_pg_core533.PgColumn<{
|
|
552
552
|
name: "id";
|
|
553
553
|
tableName: "tasks";
|
|
554
554
|
dataType: "string";
|
|
@@ -570,11 +570,11 @@ declare const tasks: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
570
570
|
};
|
|
571
571
|
dialect: "pg";
|
|
572
572
|
}>;
|
|
573
|
-
declare const apiKeys:
|
|
573
|
+
declare const apiKeys: drizzle_orm_pg_core533.PgTableWithColumns<{
|
|
574
574
|
name: "api_keys";
|
|
575
575
|
schema: undefined;
|
|
576
576
|
columns: {
|
|
577
|
-
createdAt:
|
|
577
|
+
createdAt: drizzle_orm_pg_core533.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_core1695.PgTableWithColumns<{
|
|
|
591
591
|
identity: undefined;
|
|
592
592
|
generated: undefined;
|
|
593
593
|
}, {}, {}>;
|
|
594
|
-
updatedAt:
|
|
594
|
+
updatedAt: drizzle_orm_pg_core533.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_core1695.PgTableWithColumns<{
|
|
|
608
608
|
identity: undefined;
|
|
609
609
|
generated: undefined;
|
|
610
610
|
}, {}, {}>;
|
|
611
|
-
agentId:
|
|
611
|
+
agentId: drizzle_orm_pg_core533.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_core1695.PgTableWithColumns<{
|
|
|
627
627
|
}, {}, {
|
|
628
628
|
length: 256;
|
|
629
629
|
}>;
|
|
630
|
-
publicId:
|
|
630
|
+
publicId: drizzle_orm_pg_core533.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_core1695.PgTableWithColumns<{
|
|
|
646
646
|
}, {}, {
|
|
647
647
|
length: 256;
|
|
648
648
|
}>;
|
|
649
|
-
keyHash:
|
|
649
|
+
keyHash: drizzle_orm_pg_core533.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_core1695.PgTableWithColumns<{
|
|
|
665
665
|
}, {}, {
|
|
666
666
|
length: 256;
|
|
667
667
|
}>;
|
|
668
|
-
keyPrefix:
|
|
668
|
+
keyPrefix: drizzle_orm_pg_core533.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_core1695.PgTableWithColumns<{
|
|
|
684
684
|
}, {}, {
|
|
685
685
|
length: 256;
|
|
686
686
|
}>;
|
|
687
|
-
name:
|
|
687
|
+
name: drizzle_orm_pg_core533.PgColumn<{
|
|
688
688
|
name: "name";
|
|
689
689
|
tableName: "api_keys";
|
|
690
690
|
dataType: "string";
|
|
@@ -703,7 +703,7 @@ declare const apiKeys: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
703
703
|
}, {}, {
|
|
704
704
|
length: 256;
|
|
705
705
|
}>;
|
|
706
|
-
lastUsedAt:
|
|
706
|
+
lastUsedAt: drizzle_orm_pg_core533.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_core1695.PgTableWithColumns<{
|
|
|
720
720
|
identity: undefined;
|
|
721
721
|
generated: undefined;
|
|
722
722
|
}, {}, {}>;
|
|
723
|
-
expiresAt:
|
|
723
|
+
expiresAt: drizzle_orm_pg_core533.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_core1695.PgTableWithColumns<{
|
|
|
737
737
|
identity: undefined;
|
|
738
738
|
generated: undefined;
|
|
739
739
|
}, {}, {}>;
|
|
740
|
-
projectId:
|
|
740
|
+
projectId: drizzle_orm_pg_core533.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_core1695.PgTableWithColumns<{
|
|
|
756
756
|
}, {}, {
|
|
757
757
|
length: 256;
|
|
758
758
|
}>;
|
|
759
|
-
tenantId:
|
|
759
|
+
tenantId: drizzle_orm_pg_core533.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_core1695.PgTableWithColumns<{
|
|
|
775
775
|
}, {}, {
|
|
776
776
|
length: 256;
|
|
777
777
|
}>;
|
|
778
|
-
id:
|
|
778
|
+
id: drizzle_orm_pg_core533.PgColumn<{
|
|
779
779
|
name: "id";
|
|
780
780
|
tableName: "api_keys";
|
|
781
781
|
dataType: "string";
|
|
@@ -804,11 +804,11 @@ declare const apiKeys: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
804
804
|
* Application code must enforce referential integrity for triggerId.
|
|
805
805
|
* Can optionally link to conversations when the trigger creates one.
|
|
806
806
|
*/
|
|
807
|
-
declare const triggerInvocations:
|
|
807
|
+
declare const triggerInvocations: drizzle_orm_pg_core533.PgTableWithColumns<{
|
|
808
808
|
name: "trigger_invocations";
|
|
809
809
|
schema: undefined;
|
|
810
810
|
columns: {
|
|
811
|
-
triggerId:
|
|
811
|
+
triggerId: drizzle_orm_pg_core533.PgColumn<{
|
|
812
812
|
name: "trigger_id";
|
|
813
813
|
tableName: "trigger_invocations";
|
|
814
814
|
dataType: "string";
|
|
@@ -827,7 +827,7 @@ declare const triggerInvocations: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
827
827
|
}, {}, {
|
|
828
828
|
length: 256;
|
|
829
829
|
}>;
|
|
830
|
-
conversationId:
|
|
830
|
+
conversationId: drizzle_orm_pg_core533.PgColumn<{
|
|
831
831
|
name: "conversation_id";
|
|
832
832
|
tableName: "trigger_invocations";
|
|
833
833
|
dataType: "string";
|
|
@@ -846,7 +846,7 @@ declare const triggerInvocations: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
846
846
|
}, {}, {
|
|
847
847
|
length: 256;
|
|
848
848
|
}>;
|
|
849
|
-
status:
|
|
849
|
+
status: drizzle_orm_pg_core533.PgColumn<{
|
|
850
850
|
name: "status";
|
|
851
851
|
tableName: "trigger_invocations";
|
|
852
852
|
dataType: "string";
|
|
@@ -865,7 +865,7 @@ declare const triggerInvocations: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
865
865
|
}, {}, {
|
|
866
866
|
length: 20;
|
|
867
867
|
}>;
|
|
868
|
-
requestPayload:
|
|
868
|
+
requestPayload: drizzle_orm_pg_core533.PgColumn<{
|
|
869
869
|
name: "request_payload";
|
|
870
870
|
tableName: "trigger_invocations";
|
|
871
871
|
dataType: "json";
|
|
@@ -882,7 +882,7 @@ declare const triggerInvocations: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
882
882
|
identity: undefined;
|
|
883
883
|
generated: undefined;
|
|
884
884
|
}, {}, {}>;
|
|
885
|
-
transformedPayload:
|
|
885
|
+
transformedPayload: drizzle_orm_pg_core533.PgColumn<{
|
|
886
886
|
name: "transformed_payload";
|
|
887
887
|
tableName: "trigger_invocations";
|
|
888
888
|
dataType: "json";
|
|
@@ -899,7 +899,7 @@ declare const triggerInvocations: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
899
899
|
identity: undefined;
|
|
900
900
|
generated: undefined;
|
|
901
901
|
}, {}, {}>;
|
|
902
|
-
errorMessage:
|
|
902
|
+
errorMessage: drizzle_orm_pg_core533.PgColumn<{
|
|
903
903
|
name: "error_message";
|
|
904
904
|
tableName: "trigger_invocations";
|
|
905
905
|
dataType: "string";
|
|
@@ -916,7 +916,7 @@ declare const triggerInvocations: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
916
916
|
identity: undefined;
|
|
917
917
|
generated: undefined;
|
|
918
918
|
}, {}, {}>;
|
|
919
|
-
createdAt:
|
|
919
|
+
createdAt: drizzle_orm_pg_core533.PgColumn<{
|
|
920
920
|
name: "created_at";
|
|
921
921
|
tableName: "trigger_invocations";
|
|
922
922
|
dataType: "string";
|
|
@@ -933,7 +933,7 @@ declare const triggerInvocations: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
933
933
|
identity: undefined;
|
|
934
934
|
generated: undefined;
|
|
935
935
|
}, {}, {}>;
|
|
936
|
-
agentId:
|
|
936
|
+
agentId: drizzle_orm_pg_core533.PgColumn<{
|
|
937
937
|
name: "agent_id";
|
|
938
938
|
tableName: "trigger_invocations";
|
|
939
939
|
dataType: "string";
|
|
@@ -952,7 +952,7 @@ declare const triggerInvocations: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
952
952
|
}, {}, {
|
|
953
953
|
length: 256;
|
|
954
954
|
}>;
|
|
955
|
-
projectId:
|
|
955
|
+
projectId: drizzle_orm_pg_core533.PgColumn<{
|
|
956
956
|
name: "project_id";
|
|
957
957
|
tableName: "trigger_invocations";
|
|
958
958
|
dataType: "string";
|
|
@@ -971,7 +971,7 @@ declare const triggerInvocations: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
971
971
|
}, {}, {
|
|
972
972
|
length: 256;
|
|
973
973
|
}>;
|
|
974
|
-
tenantId:
|
|
974
|
+
tenantId: drizzle_orm_pg_core533.PgColumn<{
|
|
975
975
|
name: "tenant_id";
|
|
976
976
|
tableName: "trigger_invocations";
|
|
977
977
|
dataType: "string";
|
|
@@ -990,7 +990,7 @@ declare const triggerInvocations: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
990
990
|
}, {}, {
|
|
991
991
|
length: 256;
|
|
992
992
|
}>;
|
|
993
|
-
id:
|
|
993
|
+
id: drizzle_orm_pg_core533.PgColumn<{
|
|
994
994
|
name: "id";
|
|
995
995
|
tableName: "trigger_invocations";
|
|
996
996
|
dataType: "string";
|
|
@@ -1012,11 +1012,745 @@ declare const triggerInvocations: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1012
1012
|
};
|
|
1013
1013
|
dialect: "pg";
|
|
1014
1014
|
}>;
|
|
1015
|
-
|
|
1015
|
+
/**
|
|
1016
|
+
* Slack workspace installations - records each Slack workspace installation.
|
|
1017
|
+
* Enforces workspace -> tenant uniqueness and provides audit trail.
|
|
1018
|
+
* Stores reference to Nango connection for token retrieval.
|
|
1019
|
+
*/
|
|
1020
|
+
declare const workAppSlackWorkspaces: drizzle_orm_pg_core533.PgTableWithColumns<{
|
|
1021
|
+
name: "work_app_slack_workspaces";
|
|
1022
|
+
schema: undefined;
|
|
1023
|
+
columns: {
|
|
1024
|
+
createdAt: drizzle_orm_pg_core533.PgColumn<{
|
|
1025
|
+
name: "created_at";
|
|
1026
|
+
tableName: "work_app_slack_workspaces";
|
|
1027
|
+
dataType: "string";
|
|
1028
|
+
columnType: "PgTimestampString";
|
|
1029
|
+
data: string;
|
|
1030
|
+
driverParam: string;
|
|
1031
|
+
notNull: true;
|
|
1032
|
+
hasDefault: true;
|
|
1033
|
+
isPrimaryKey: false;
|
|
1034
|
+
isAutoincrement: false;
|
|
1035
|
+
hasRuntimeDefault: false;
|
|
1036
|
+
enumValues: undefined;
|
|
1037
|
+
baseColumn: never;
|
|
1038
|
+
identity: undefined;
|
|
1039
|
+
generated: undefined;
|
|
1040
|
+
}, {}, {}>;
|
|
1041
|
+
updatedAt: drizzle_orm_pg_core533.PgColumn<{
|
|
1042
|
+
name: "updated_at";
|
|
1043
|
+
tableName: "work_app_slack_workspaces";
|
|
1044
|
+
dataType: "string";
|
|
1045
|
+
columnType: "PgTimestampString";
|
|
1046
|
+
data: string;
|
|
1047
|
+
driverParam: string;
|
|
1048
|
+
notNull: true;
|
|
1049
|
+
hasDefault: true;
|
|
1050
|
+
isPrimaryKey: false;
|
|
1051
|
+
isAutoincrement: false;
|
|
1052
|
+
hasRuntimeDefault: false;
|
|
1053
|
+
enumValues: undefined;
|
|
1054
|
+
baseColumn: never;
|
|
1055
|
+
identity: undefined;
|
|
1056
|
+
generated: undefined;
|
|
1057
|
+
}, {}, {}>;
|
|
1058
|
+
id: drizzle_orm_pg_core533.PgColumn<{
|
|
1059
|
+
name: "id";
|
|
1060
|
+
tableName: "work_app_slack_workspaces";
|
|
1061
|
+
dataType: "string";
|
|
1062
|
+
columnType: "PgVarchar";
|
|
1063
|
+
data: string;
|
|
1064
|
+
driverParam: string;
|
|
1065
|
+
notNull: true;
|
|
1066
|
+
hasDefault: false;
|
|
1067
|
+
isPrimaryKey: true;
|
|
1068
|
+
isAutoincrement: false;
|
|
1069
|
+
hasRuntimeDefault: false;
|
|
1070
|
+
enumValues: [string, ...string[]];
|
|
1071
|
+
baseColumn: never;
|
|
1072
|
+
identity: undefined;
|
|
1073
|
+
generated: undefined;
|
|
1074
|
+
}, {}, {
|
|
1075
|
+
length: 256;
|
|
1076
|
+
}>;
|
|
1077
|
+
tenantId: drizzle_orm_pg_core533.PgColumn<{
|
|
1078
|
+
name: "tenant_id";
|
|
1079
|
+
tableName: "work_app_slack_workspaces";
|
|
1080
|
+
dataType: "string";
|
|
1081
|
+
columnType: "PgVarchar";
|
|
1082
|
+
data: string;
|
|
1083
|
+
driverParam: string;
|
|
1084
|
+
notNull: true;
|
|
1085
|
+
hasDefault: false;
|
|
1086
|
+
isPrimaryKey: false;
|
|
1087
|
+
isAutoincrement: false;
|
|
1088
|
+
hasRuntimeDefault: false;
|
|
1089
|
+
enumValues: [string, ...string[]];
|
|
1090
|
+
baseColumn: never;
|
|
1091
|
+
identity: undefined;
|
|
1092
|
+
generated: undefined;
|
|
1093
|
+
}, {}, {
|
|
1094
|
+
length: 256;
|
|
1095
|
+
}>;
|
|
1096
|
+
slackTeamId: drizzle_orm_pg_core533.PgColumn<{
|
|
1097
|
+
name: "slack_team_id";
|
|
1098
|
+
tableName: "work_app_slack_workspaces";
|
|
1099
|
+
dataType: "string";
|
|
1100
|
+
columnType: "PgVarchar";
|
|
1101
|
+
data: string;
|
|
1102
|
+
driverParam: string;
|
|
1103
|
+
notNull: true;
|
|
1104
|
+
hasDefault: false;
|
|
1105
|
+
isPrimaryKey: false;
|
|
1106
|
+
isAutoincrement: false;
|
|
1107
|
+
hasRuntimeDefault: false;
|
|
1108
|
+
enumValues: [string, ...string[]];
|
|
1109
|
+
baseColumn: never;
|
|
1110
|
+
identity: undefined;
|
|
1111
|
+
generated: undefined;
|
|
1112
|
+
}, {}, {
|
|
1113
|
+
length: 256;
|
|
1114
|
+
}>;
|
|
1115
|
+
slackEnterpriseId: drizzle_orm_pg_core533.PgColumn<{
|
|
1116
|
+
name: "slack_enterprise_id";
|
|
1117
|
+
tableName: "work_app_slack_workspaces";
|
|
1118
|
+
dataType: "string";
|
|
1119
|
+
columnType: "PgVarchar";
|
|
1120
|
+
data: string;
|
|
1121
|
+
driverParam: string;
|
|
1122
|
+
notNull: false;
|
|
1123
|
+
hasDefault: false;
|
|
1124
|
+
isPrimaryKey: false;
|
|
1125
|
+
isAutoincrement: false;
|
|
1126
|
+
hasRuntimeDefault: false;
|
|
1127
|
+
enumValues: [string, ...string[]];
|
|
1128
|
+
baseColumn: never;
|
|
1129
|
+
identity: undefined;
|
|
1130
|
+
generated: undefined;
|
|
1131
|
+
}, {}, {
|
|
1132
|
+
length: 256;
|
|
1133
|
+
}>;
|
|
1134
|
+
slackAppId: drizzle_orm_pg_core533.PgColumn<{
|
|
1135
|
+
name: "slack_app_id";
|
|
1136
|
+
tableName: "work_app_slack_workspaces";
|
|
1137
|
+
dataType: "string";
|
|
1138
|
+
columnType: "PgVarchar";
|
|
1139
|
+
data: string;
|
|
1140
|
+
driverParam: string;
|
|
1141
|
+
notNull: false;
|
|
1142
|
+
hasDefault: false;
|
|
1143
|
+
isPrimaryKey: false;
|
|
1144
|
+
isAutoincrement: false;
|
|
1145
|
+
hasRuntimeDefault: false;
|
|
1146
|
+
enumValues: [string, ...string[]];
|
|
1147
|
+
baseColumn: never;
|
|
1148
|
+
identity: undefined;
|
|
1149
|
+
generated: undefined;
|
|
1150
|
+
}, {}, {
|
|
1151
|
+
length: 256;
|
|
1152
|
+
}>;
|
|
1153
|
+
slackTeamName: drizzle_orm_pg_core533.PgColumn<{
|
|
1154
|
+
name: "slack_team_name";
|
|
1155
|
+
tableName: "work_app_slack_workspaces";
|
|
1156
|
+
dataType: "string";
|
|
1157
|
+
columnType: "PgVarchar";
|
|
1158
|
+
data: string;
|
|
1159
|
+
driverParam: string;
|
|
1160
|
+
notNull: false;
|
|
1161
|
+
hasDefault: false;
|
|
1162
|
+
isPrimaryKey: false;
|
|
1163
|
+
isAutoincrement: false;
|
|
1164
|
+
hasRuntimeDefault: false;
|
|
1165
|
+
enumValues: [string, ...string[]];
|
|
1166
|
+
baseColumn: never;
|
|
1167
|
+
identity: undefined;
|
|
1168
|
+
generated: undefined;
|
|
1169
|
+
}, {}, {
|
|
1170
|
+
length: 512;
|
|
1171
|
+
}>;
|
|
1172
|
+
nangoProviderConfigKey: drizzle_orm_pg_core533.PgColumn<{
|
|
1173
|
+
name: "nango_provider_config_key";
|
|
1174
|
+
tableName: "work_app_slack_workspaces";
|
|
1175
|
+
dataType: "string";
|
|
1176
|
+
columnType: "PgVarchar";
|
|
1177
|
+
data: string;
|
|
1178
|
+
driverParam: string;
|
|
1179
|
+
notNull: true;
|
|
1180
|
+
hasDefault: true;
|
|
1181
|
+
isPrimaryKey: false;
|
|
1182
|
+
isAutoincrement: false;
|
|
1183
|
+
hasRuntimeDefault: false;
|
|
1184
|
+
enumValues: [string, ...string[]];
|
|
1185
|
+
baseColumn: never;
|
|
1186
|
+
identity: undefined;
|
|
1187
|
+
generated: undefined;
|
|
1188
|
+
}, {}, {
|
|
1189
|
+
length: 256;
|
|
1190
|
+
}>;
|
|
1191
|
+
nangoConnectionId: drizzle_orm_pg_core533.PgColumn<{
|
|
1192
|
+
name: "nango_connection_id";
|
|
1193
|
+
tableName: "work_app_slack_workspaces";
|
|
1194
|
+
dataType: "string";
|
|
1195
|
+
columnType: "PgVarchar";
|
|
1196
|
+
data: string;
|
|
1197
|
+
driverParam: string;
|
|
1198
|
+
notNull: true;
|
|
1199
|
+
hasDefault: false;
|
|
1200
|
+
isPrimaryKey: false;
|
|
1201
|
+
isAutoincrement: false;
|
|
1202
|
+
hasRuntimeDefault: false;
|
|
1203
|
+
enumValues: [string, ...string[]];
|
|
1204
|
+
baseColumn: never;
|
|
1205
|
+
identity: undefined;
|
|
1206
|
+
generated: undefined;
|
|
1207
|
+
}, {}, {
|
|
1208
|
+
length: 256;
|
|
1209
|
+
}>;
|
|
1210
|
+
status: drizzle_orm_pg_core533.PgColumn<{
|
|
1211
|
+
name: "status";
|
|
1212
|
+
tableName: "work_app_slack_workspaces";
|
|
1213
|
+
dataType: "string";
|
|
1214
|
+
columnType: "PgVarchar";
|
|
1215
|
+
data: string;
|
|
1216
|
+
driverParam: string;
|
|
1217
|
+
notNull: true;
|
|
1218
|
+
hasDefault: true;
|
|
1219
|
+
isPrimaryKey: false;
|
|
1220
|
+
isAutoincrement: false;
|
|
1221
|
+
hasRuntimeDefault: false;
|
|
1222
|
+
enumValues: [string, ...string[]];
|
|
1223
|
+
baseColumn: never;
|
|
1224
|
+
identity: undefined;
|
|
1225
|
+
generated: undefined;
|
|
1226
|
+
}, {}, {
|
|
1227
|
+
length: 20;
|
|
1228
|
+
}>;
|
|
1229
|
+
installedByUserId: drizzle_orm_pg_core533.PgColumn<{
|
|
1230
|
+
name: "installed_by_user_id";
|
|
1231
|
+
tableName: "work_app_slack_workspaces";
|
|
1232
|
+
dataType: "string";
|
|
1233
|
+
columnType: "PgText";
|
|
1234
|
+
data: string;
|
|
1235
|
+
driverParam: string;
|
|
1236
|
+
notNull: false;
|
|
1237
|
+
hasDefault: false;
|
|
1238
|
+
isPrimaryKey: false;
|
|
1239
|
+
isAutoincrement: false;
|
|
1240
|
+
hasRuntimeDefault: false;
|
|
1241
|
+
enumValues: [string, ...string[]];
|
|
1242
|
+
baseColumn: never;
|
|
1243
|
+
identity: undefined;
|
|
1244
|
+
generated: undefined;
|
|
1245
|
+
}, {}, {}>;
|
|
1246
|
+
};
|
|
1247
|
+
dialect: "pg";
|
|
1248
|
+
}>;
|
|
1249
|
+
/**
|
|
1250
|
+
* Slack user mappings - maps Slack users to Inkeep users.
|
|
1251
|
+
* Enables Slack users to trigger agents after linking their accounts.
|
|
1252
|
+
* Unique per tenant + clientId + slackTeamId + slackUserId.
|
|
1253
|
+
*/
|
|
1254
|
+
declare const workAppSlackUserMappings: drizzle_orm_pg_core533.PgTableWithColumns<{
|
|
1255
|
+
name: "work_app_slack_user_mappings";
|
|
1256
|
+
schema: undefined;
|
|
1257
|
+
columns: {
|
|
1258
|
+
createdAt: drizzle_orm_pg_core533.PgColumn<{
|
|
1259
|
+
name: "created_at";
|
|
1260
|
+
tableName: "work_app_slack_user_mappings";
|
|
1261
|
+
dataType: "string";
|
|
1262
|
+
columnType: "PgTimestampString";
|
|
1263
|
+
data: string;
|
|
1264
|
+
driverParam: string;
|
|
1265
|
+
notNull: true;
|
|
1266
|
+
hasDefault: true;
|
|
1267
|
+
isPrimaryKey: false;
|
|
1268
|
+
isAutoincrement: false;
|
|
1269
|
+
hasRuntimeDefault: false;
|
|
1270
|
+
enumValues: undefined;
|
|
1271
|
+
baseColumn: never;
|
|
1272
|
+
identity: undefined;
|
|
1273
|
+
generated: undefined;
|
|
1274
|
+
}, {}, {}>;
|
|
1275
|
+
updatedAt: drizzle_orm_pg_core533.PgColumn<{
|
|
1276
|
+
name: "updated_at";
|
|
1277
|
+
tableName: "work_app_slack_user_mappings";
|
|
1278
|
+
dataType: "string";
|
|
1279
|
+
columnType: "PgTimestampString";
|
|
1280
|
+
data: string;
|
|
1281
|
+
driverParam: string;
|
|
1282
|
+
notNull: true;
|
|
1283
|
+
hasDefault: true;
|
|
1284
|
+
isPrimaryKey: false;
|
|
1285
|
+
isAutoincrement: false;
|
|
1286
|
+
hasRuntimeDefault: false;
|
|
1287
|
+
enumValues: undefined;
|
|
1288
|
+
baseColumn: never;
|
|
1289
|
+
identity: undefined;
|
|
1290
|
+
generated: undefined;
|
|
1291
|
+
}, {}, {}>;
|
|
1292
|
+
id: drizzle_orm_pg_core533.PgColumn<{
|
|
1293
|
+
name: "id";
|
|
1294
|
+
tableName: "work_app_slack_user_mappings";
|
|
1295
|
+
dataType: "string";
|
|
1296
|
+
columnType: "PgVarchar";
|
|
1297
|
+
data: string;
|
|
1298
|
+
driverParam: string;
|
|
1299
|
+
notNull: true;
|
|
1300
|
+
hasDefault: false;
|
|
1301
|
+
isPrimaryKey: true;
|
|
1302
|
+
isAutoincrement: false;
|
|
1303
|
+
hasRuntimeDefault: false;
|
|
1304
|
+
enumValues: [string, ...string[]];
|
|
1305
|
+
baseColumn: never;
|
|
1306
|
+
identity: undefined;
|
|
1307
|
+
generated: undefined;
|
|
1308
|
+
}, {}, {
|
|
1309
|
+
length: 256;
|
|
1310
|
+
}>;
|
|
1311
|
+
tenantId: drizzle_orm_pg_core533.PgColumn<{
|
|
1312
|
+
name: "tenant_id";
|
|
1313
|
+
tableName: "work_app_slack_user_mappings";
|
|
1314
|
+
dataType: "string";
|
|
1315
|
+
columnType: "PgVarchar";
|
|
1316
|
+
data: string;
|
|
1317
|
+
driverParam: string;
|
|
1318
|
+
notNull: true;
|
|
1319
|
+
hasDefault: false;
|
|
1320
|
+
isPrimaryKey: false;
|
|
1321
|
+
isAutoincrement: false;
|
|
1322
|
+
hasRuntimeDefault: false;
|
|
1323
|
+
enumValues: [string, ...string[]];
|
|
1324
|
+
baseColumn: never;
|
|
1325
|
+
identity: undefined;
|
|
1326
|
+
generated: undefined;
|
|
1327
|
+
}, {}, {
|
|
1328
|
+
length: 256;
|
|
1329
|
+
}>;
|
|
1330
|
+
clientId: drizzle_orm_pg_core533.PgColumn<{
|
|
1331
|
+
name: "client_id";
|
|
1332
|
+
tableName: "work_app_slack_user_mappings";
|
|
1333
|
+
dataType: "string";
|
|
1334
|
+
columnType: "PgVarchar";
|
|
1335
|
+
data: string;
|
|
1336
|
+
driverParam: string;
|
|
1337
|
+
notNull: true;
|
|
1338
|
+
hasDefault: true;
|
|
1339
|
+
isPrimaryKey: false;
|
|
1340
|
+
isAutoincrement: false;
|
|
1341
|
+
hasRuntimeDefault: false;
|
|
1342
|
+
enumValues: [string, ...string[]];
|
|
1343
|
+
baseColumn: never;
|
|
1344
|
+
identity: undefined;
|
|
1345
|
+
generated: undefined;
|
|
1346
|
+
}, {}, {
|
|
1347
|
+
length: 256;
|
|
1348
|
+
}>;
|
|
1349
|
+
slackUserId: drizzle_orm_pg_core533.PgColumn<{
|
|
1350
|
+
name: "slack_user_id";
|
|
1351
|
+
tableName: "work_app_slack_user_mappings";
|
|
1352
|
+
dataType: "string";
|
|
1353
|
+
columnType: "PgVarchar";
|
|
1354
|
+
data: string;
|
|
1355
|
+
driverParam: string;
|
|
1356
|
+
notNull: true;
|
|
1357
|
+
hasDefault: false;
|
|
1358
|
+
isPrimaryKey: false;
|
|
1359
|
+
isAutoincrement: false;
|
|
1360
|
+
hasRuntimeDefault: false;
|
|
1361
|
+
enumValues: [string, ...string[]];
|
|
1362
|
+
baseColumn: never;
|
|
1363
|
+
identity: undefined;
|
|
1364
|
+
generated: undefined;
|
|
1365
|
+
}, {}, {
|
|
1366
|
+
length: 256;
|
|
1367
|
+
}>;
|
|
1368
|
+
slackTeamId: drizzle_orm_pg_core533.PgColumn<{
|
|
1369
|
+
name: "slack_team_id";
|
|
1370
|
+
tableName: "work_app_slack_user_mappings";
|
|
1371
|
+
dataType: "string";
|
|
1372
|
+
columnType: "PgVarchar";
|
|
1373
|
+
data: string;
|
|
1374
|
+
driverParam: string;
|
|
1375
|
+
notNull: true;
|
|
1376
|
+
hasDefault: false;
|
|
1377
|
+
isPrimaryKey: false;
|
|
1378
|
+
isAutoincrement: false;
|
|
1379
|
+
hasRuntimeDefault: false;
|
|
1380
|
+
enumValues: [string, ...string[]];
|
|
1381
|
+
baseColumn: never;
|
|
1382
|
+
identity: undefined;
|
|
1383
|
+
generated: undefined;
|
|
1384
|
+
}, {}, {
|
|
1385
|
+
length: 256;
|
|
1386
|
+
}>;
|
|
1387
|
+
slackEnterpriseId: drizzle_orm_pg_core533.PgColumn<{
|
|
1388
|
+
name: "slack_enterprise_id";
|
|
1389
|
+
tableName: "work_app_slack_user_mappings";
|
|
1390
|
+
dataType: "string";
|
|
1391
|
+
columnType: "PgVarchar";
|
|
1392
|
+
data: string;
|
|
1393
|
+
driverParam: string;
|
|
1394
|
+
notNull: false;
|
|
1395
|
+
hasDefault: false;
|
|
1396
|
+
isPrimaryKey: false;
|
|
1397
|
+
isAutoincrement: false;
|
|
1398
|
+
hasRuntimeDefault: false;
|
|
1399
|
+
enumValues: [string, ...string[]];
|
|
1400
|
+
baseColumn: never;
|
|
1401
|
+
identity: undefined;
|
|
1402
|
+
generated: undefined;
|
|
1403
|
+
}, {}, {
|
|
1404
|
+
length: 256;
|
|
1405
|
+
}>;
|
|
1406
|
+
inkeepUserId: drizzle_orm_pg_core533.PgColumn<{
|
|
1407
|
+
name: "inkeep_user_id";
|
|
1408
|
+
tableName: "work_app_slack_user_mappings";
|
|
1409
|
+
dataType: "string";
|
|
1410
|
+
columnType: "PgText";
|
|
1411
|
+
data: string;
|
|
1412
|
+
driverParam: string;
|
|
1413
|
+
notNull: true;
|
|
1414
|
+
hasDefault: false;
|
|
1415
|
+
isPrimaryKey: false;
|
|
1416
|
+
isAutoincrement: false;
|
|
1417
|
+
hasRuntimeDefault: false;
|
|
1418
|
+
enumValues: [string, ...string[]];
|
|
1419
|
+
baseColumn: never;
|
|
1420
|
+
identity: undefined;
|
|
1421
|
+
generated: undefined;
|
|
1422
|
+
}, {}, {}>;
|
|
1423
|
+
slackUsername: drizzle_orm_pg_core533.PgColumn<{
|
|
1424
|
+
name: "slack_username";
|
|
1425
|
+
tableName: "work_app_slack_user_mappings";
|
|
1426
|
+
dataType: "string";
|
|
1427
|
+
columnType: "PgVarchar";
|
|
1428
|
+
data: string;
|
|
1429
|
+
driverParam: string;
|
|
1430
|
+
notNull: false;
|
|
1431
|
+
hasDefault: false;
|
|
1432
|
+
isPrimaryKey: false;
|
|
1433
|
+
isAutoincrement: false;
|
|
1434
|
+
hasRuntimeDefault: false;
|
|
1435
|
+
enumValues: [string, ...string[]];
|
|
1436
|
+
baseColumn: never;
|
|
1437
|
+
identity: undefined;
|
|
1438
|
+
generated: undefined;
|
|
1439
|
+
}, {}, {
|
|
1440
|
+
length: 256;
|
|
1441
|
+
}>;
|
|
1442
|
+
slackEmail: drizzle_orm_pg_core533.PgColumn<{
|
|
1443
|
+
name: "slack_email";
|
|
1444
|
+
tableName: "work_app_slack_user_mappings";
|
|
1445
|
+
dataType: "string";
|
|
1446
|
+
columnType: "PgVarchar";
|
|
1447
|
+
data: string;
|
|
1448
|
+
driverParam: string;
|
|
1449
|
+
notNull: false;
|
|
1450
|
+
hasDefault: false;
|
|
1451
|
+
isPrimaryKey: false;
|
|
1452
|
+
isAutoincrement: false;
|
|
1453
|
+
hasRuntimeDefault: false;
|
|
1454
|
+
enumValues: [string, ...string[]];
|
|
1455
|
+
baseColumn: never;
|
|
1456
|
+
identity: undefined;
|
|
1457
|
+
generated: undefined;
|
|
1458
|
+
}, {}, {
|
|
1459
|
+
length: 256;
|
|
1460
|
+
}>;
|
|
1461
|
+
linkedAt: drizzle_orm_pg_core533.PgColumn<{
|
|
1462
|
+
name: "linked_at";
|
|
1463
|
+
tableName: "work_app_slack_user_mappings";
|
|
1464
|
+
dataType: "string";
|
|
1465
|
+
columnType: "PgTimestampString";
|
|
1466
|
+
data: string;
|
|
1467
|
+
driverParam: string;
|
|
1468
|
+
notNull: true;
|
|
1469
|
+
hasDefault: true;
|
|
1470
|
+
isPrimaryKey: false;
|
|
1471
|
+
isAutoincrement: false;
|
|
1472
|
+
hasRuntimeDefault: false;
|
|
1473
|
+
enumValues: undefined;
|
|
1474
|
+
baseColumn: never;
|
|
1475
|
+
identity: undefined;
|
|
1476
|
+
generated: undefined;
|
|
1477
|
+
}, {}, {}>;
|
|
1478
|
+
lastUsedAt: drizzle_orm_pg_core533.PgColumn<{
|
|
1479
|
+
name: "last_used_at";
|
|
1480
|
+
tableName: "work_app_slack_user_mappings";
|
|
1481
|
+
dataType: "string";
|
|
1482
|
+
columnType: "PgTimestampString";
|
|
1483
|
+
data: string;
|
|
1484
|
+
driverParam: string;
|
|
1485
|
+
notNull: false;
|
|
1486
|
+
hasDefault: false;
|
|
1487
|
+
isPrimaryKey: false;
|
|
1488
|
+
isAutoincrement: false;
|
|
1489
|
+
hasRuntimeDefault: false;
|
|
1490
|
+
enumValues: undefined;
|
|
1491
|
+
baseColumn: never;
|
|
1492
|
+
identity: undefined;
|
|
1493
|
+
generated: undefined;
|
|
1494
|
+
}, {}, {}>;
|
|
1495
|
+
};
|
|
1496
|
+
dialect: "pg";
|
|
1497
|
+
}>;
|
|
1498
|
+
/**
|
|
1499
|
+
* Slack channel agent configurations - maps Slack channels to default agents.
|
|
1500
|
+
* Allows admins to set channel-specific agent defaults that override workspace defaults.
|
|
1501
|
+
* Unique per tenant + slackTeamId + slackChannelId.
|
|
1502
|
+
*/
|
|
1503
|
+
declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core533.PgTableWithColumns<{
|
|
1504
|
+
name: "work_app_slack_channel_agent_configs";
|
|
1505
|
+
schema: undefined;
|
|
1506
|
+
columns: {
|
|
1507
|
+
createdAt: drizzle_orm_pg_core533.PgColumn<{
|
|
1508
|
+
name: "created_at";
|
|
1509
|
+
tableName: "work_app_slack_channel_agent_configs";
|
|
1510
|
+
dataType: "string";
|
|
1511
|
+
columnType: "PgTimestampString";
|
|
1512
|
+
data: string;
|
|
1513
|
+
driverParam: string;
|
|
1514
|
+
notNull: true;
|
|
1515
|
+
hasDefault: true;
|
|
1516
|
+
isPrimaryKey: false;
|
|
1517
|
+
isAutoincrement: false;
|
|
1518
|
+
hasRuntimeDefault: false;
|
|
1519
|
+
enumValues: undefined;
|
|
1520
|
+
baseColumn: never;
|
|
1521
|
+
identity: undefined;
|
|
1522
|
+
generated: undefined;
|
|
1523
|
+
}, {}, {}>;
|
|
1524
|
+
updatedAt: drizzle_orm_pg_core533.PgColumn<{
|
|
1525
|
+
name: "updated_at";
|
|
1526
|
+
tableName: "work_app_slack_channel_agent_configs";
|
|
1527
|
+
dataType: "string";
|
|
1528
|
+
columnType: "PgTimestampString";
|
|
1529
|
+
data: string;
|
|
1530
|
+
driverParam: string;
|
|
1531
|
+
notNull: true;
|
|
1532
|
+
hasDefault: true;
|
|
1533
|
+
isPrimaryKey: false;
|
|
1534
|
+
isAutoincrement: false;
|
|
1535
|
+
hasRuntimeDefault: false;
|
|
1536
|
+
enumValues: undefined;
|
|
1537
|
+
baseColumn: never;
|
|
1538
|
+
identity: undefined;
|
|
1539
|
+
generated: undefined;
|
|
1540
|
+
}, {}, {}>;
|
|
1541
|
+
id: drizzle_orm_pg_core533.PgColumn<{
|
|
1542
|
+
name: "id";
|
|
1543
|
+
tableName: "work_app_slack_channel_agent_configs";
|
|
1544
|
+
dataType: "string";
|
|
1545
|
+
columnType: "PgVarchar";
|
|
1546
|
+
data: string;
|
|
1547
|
+
driverParam: string;
|
|
1548
|
+
notNull: true;
|
|
1549
|
+
hasDefault: false;
|
|
1550
|
+
isPrimaryKey: true;
|
|
1551
|
+
isAutoincrement: false;
|
|
1552
|
+
hasRuntimeDefault: false;
|
|
1553
|
+
enumValues: [string, ...string[]];
|
|
1554
|
+
baseColumn: never;
|
|
1555
|
+
identity: undefined;
|
|
1556
|
+
generated: undefined;
|
|
1557
|
+
}, {}, {
|
|
1558
|
+
length: 256;
|
|
1559
|
+
}>;
|
|
1560
|
+
tenantId: drizzle_orm_pg_core533.PgColumn<{
|
|
1561
|
+
name: "tenant_id";
|
|
1562
|
+
tableName: "work_app_slack_channel_agent_configs";
|
|
1563
|
+
dataType: "string";
|
|
1564
|
+
columnType: "PgVarchar";
|
|
1565
|
+
data: string;
|
|
1566
|
+
driverParam: string;
|
|
1567
|
+
notNull: true;
|
|
1568
|
+
hasDefault: false;
|
|
1569
|
+
isPrimaryKey: false;
|
|
1570
|
+
isAutoincrement: false;
|
|
1571
|
+
hasRuntimeDefault: false;
|
|
1572
|
+
enumValues: [string, ...string[]];
|
|
1573
|
+
baseColumn: never;
|
|
1574
|
+
identity: undefined;
|
|
1575
|
+
generated: undefined;
|
|
1576
|
+
}, {}, {
|
|
1577
|
+
length: 256;
|
|
1578
|
+
}>;
|
|
1579
|
+
slackTeamId: drizzle_orm_pg_core533.PgColumn<{
|
|
1580
|
+
name: "slack_team_id";
|
|
1581
|
+
tableName: "work_app_slack_channel_agent_configs";
|
|
1582
|
+
dataType: "string";
|
|
1583
|
+
columnType: "PgVarchar";
|
|
1584
|
+
data: string;
|
|
1585
|
+
driverParam: string;
|
|
1586
|
+
notNull: true;
|
|
1587
|
+
hasDefault: false;
|
|
1588
|
+
isPrimaryKey: false;
|
|
1589
|
+
isAutoincrement: false;
|
|
1590
|
+
hasRuntimeDefault: false;
|
|
1591
|
+
enumValues: [string, ...string[]];
|
|
1592
|
+
baseColumn: never;
|
|
1593
|
+
identity: undefined;
|
|
1594
|
+
generated: undefined;
|
|
1595
|
+
}, {}, {
|
|
1596
|
+
length: 256;
|
|
1597
|
+
}>;
|
|
1598
|
+
slackChannelId: drizzle_orm_pg_core533.PgColumn<{
|
|
1599
|
+
name: "slack_channel_id";
|
|
1600
|
+
tableName: "work_app_slack_channel_agent_configs";
|
|
1601
|
+
dataType: "string";
|
|
1602
|
+
columnType: "PgVarchar";
|
|
1603
|
+
data: string;
|
|
1604
|
+
driverParam: string;
|
|
1605
|
+
notNull: true;
|
|
1606
|
+
hasDefault: false;
|
|
1607
|
+
isPrimaryKey: false;
|
|
1608
|
+
isAutoincrement: false;
|
|
1609
|
+
hasRuntimeDefault: false;
|
|
1610
|
+
enumValues: [string, ...string[]];
|
|
1611
|
+
baseColumn: never;
|
|
1612
|
+
identity: undefined;
|
|
1613
|
+
generated: undefined;
|
|
1614
|
+
}, {}, {
|
|
1615
|
+
length: 256;
|
|
1616
|
+
}>;
|
|
1617
|
+
slackChannelName: drizzle_orm_pg_core533.PgColumn<{
|
|
1618
|
+
name: "slack_channel_name";
|
|
1619
|
+
tableName: "work_app_slack_channel_agent_configs";
|
|
1620
|
+
dataType: "string";
|
|
1621
|
+
columnType: "PgVarchar";
|
|
1622
|
+
data: string;
|
|
1623
|
+
driverParam: string;
|
|
1624
|
+
notNull: false;
|
|
1625
|
+
hasDefault: false;
|
|
1626
|
+
isPrimaryKey: false;
|
|
1627
|
+
isAutoincrement: false;
|
|
1628
|
+
hasRuntimeDefault: false;
|
|
1629
|
+
enumValues: [string, ...string[]];
|
|
1630
|
+
baseColumn: never;
|
|
1631
|
+
identity: undefined;
|
|
1632
|
+
generated: undefined;
|
|
1633
|
+
}, {}, {
|
|
1634
|
+
length: 256;
|
|
1635
|
+
}>;
|
|
1636
|
+
slackChannelType: drizzle_orm_pg_core533.PgColumn<{
|
|
1637
|
+
name: "slack_channel_type";
|
|
1638
|
+
tableName: "work_app_slack_channel_agent_configs";
|
|
1639
|
+
dataType: "string";
|
|
1640
|
+
columnType: "PgVarchar";
|
|
1641
|
+
data: string;
|
|
1642
|
+
driverParam: string;
|
|
1643
|
+
notNull: false;
|
|
1644
|
+
hasDefault: false;
|
|
1645
|
+
isPrimaryKey: false;
|
|
1646
|
+
isAutoincrement: false;
|
|
1647
|
+
hasRuntimeDefault: false;
|
|
1648
|
+
enumValues: [string, ...string[]];
|
|
1649
|
+
baseColumn: never;
|
|
1650
|
+
identity: undefined;
|
|
1651
|
+
generated: undefined;
|
|
1652
|
+
}, {}, {
|
|
1653
|
+
length: 50;
|
|
1654
|
+
}>;
|
|
1655
|
+
projectId: drizzle_orm_pg_core533.PgColumn<{
|
|
1656
|
+
name: "project_id";
|
|
1657
|
+
tableName: "work_app_slack_channel_agent_configs";
|
|
1658
|
+
dataType: "string";
|
|
1659
|
+
columnType: "PgVarchar";
|
|
1660
|
+
data: string;
|
|
1661
|
+
driverParam: string;
|
|
1662
|
+
notNull: true;
|
|
1663
|
+
hasDefault: false;
|
|
1664
|
+
isPrimaryKey: false;
|
|
1665
|
+
isAutoincrement: false;
|
|
1666
|
+
hasRuntimeDefault: false;
|
|
1667
|
+
enumValues: [string, ...string[]];
|
|
1668
|
+
baseColumn: never;
|
|
1669
|
+
identity: undefined;
|
|
1670
|
+
generated: undefined;
|
|
1671
|
+
}, {}, {
|
|
1672
|
+
length: 256;
|
|
1673
|
+
}>;
|
|
1674
|
+
agentId: drizzle_orm_pg_core533.PgColumn<{
|
|
1675
|
+
name: "agent_id";
|
|
1676
|
+
tableName: "work_app_slack_channel_agent_configs";
|
|
1677
|
+
dataType: "string";
|
|
1678
|
+
columnType: "PgVarchar";
|
|
1679
|
+
data: string;
|
|
1680
|
+
driverParam: string;
|
|
1681
|
+
notNull: true;
|
|
1682
|
+
hasDefault: false;
|
|
1683
|
+
isPrimaryKey: false;
|
|
1684
|
+
isAutoincrement: false;
|
|
1685
|
+
hasRuntimeDefault: false;
|
|
1686
|
+
enumValues: [string, ...string[]];
|
|
1687
|
+
baseColumn: never;
|
|
1688
|
+
identity: undefined;
|
|
1689
|
+
generated: undefined;
|
|
1690
|
+
}, {}, {
|
|
1691
|
+
length: 256;
|
|
1692
|
+
}>;
|
|
1693
|
+
agentName: drizzle_orm_pg_core533.PgColumn<{
|
|
1694
|
+
name: "agent_name";
|
|
1695
|
+
tableName: "work_app_slack_channel_agent_configs";
|
|
1696
|
+
dataType: "string";
|
|
1697
|
+
columnType: "PgVarchar";
|
|
1698
|
+
data: string;
|
|
1699
|
+
driverParam: string;
|
|
1700
|
+
notNull: false;
|
|
1701
|
+
hasDefault: false;
|
|
1702
|
+
isPrimaryKey: false;
|
|
1703
|
+
isAutoincrement: false;
|
|
1704
|
+
hasRuntimeDefault: false;
|
|
1705
|
+
enumValues: [string, ...string[]];
|
|
1706
|
+
baseColumn: never;
|
|
1707
|
+
identity: undefined;
|
|
1708
|
+
generated: undefined;
|
|
1709
|
+
}, {}, {
|
|
1710
|
+
length: 256;
|
|
1711
|
+
}>;
|
|
1712
|
+
configuredByUserId: drizzle_orm_pg_core533.PgColumn<{
|
|
1713
|
+
name: "configured_by_user_id";
|
|
1714
|
+
tableName: "work_app_slack_channel_agent_configs";
|
|
1715
|
+
dataType: "string";
|
|
1716
|
+
columnType: "PgText";
|
|
1717
|
+
data: string;
|
|
1718
|
+
driverParam: string;
|
|
1719
|
+
notNull: false;
|
|
1720
|
+
hasDefault: false;
|
|
1721
|
+
isPrimaryKey: false;
|
|
1722
|
+
isAutoincrement: false;
|
|
1723
|
+
hasRuntimeDefault: false;
|
|
1724
|
+
enumValues: [string, ...string[]];
|
|
1725
|
+
baseColumn: never;
|
|
1726
|
+
identity: undefined;
|
|
1727
|
+
generated: undefined;
|
|
1728
|
+
}, {}, {}>;
|
|
1729
|
+
enabled: drizzle_orm_pg_core533.PgColumn<{
|
|
1730
|
+
name: "enabled";
|
|
1731
|
+
tableName: "work_app_slack_channel_agent_configs";
|
|
1732
|
+
dataType: "boolean";
|
|
1733
|
+
columnType: "PgBoolean";
|
|
1734
|
+
data: boolean;
|
|
1735
|
+
driverParam: boolean;
|
|
1736
|
+
notNull: true;
|
|
1737
|
+
hasDefault: true;
|
|
1738
|
+
isPrimaryKey: false;
|
|
1739
|
+
isAutoincrement: false;
|
|
1740
|
+
hasRuntimeDefault: false;
|
|
1741
|
+
enumValues: undefined;
|
|
1742
|
+
baseColumn: never;
|
|
1743
|
+
identity: undefined;
|
|
1744
|
+
generated: undefined;
|
|
1745
|
+
}, {}, {}>;
|
|
1746
|
+
};
|
|
1747
|
+
dialect: "pg";
|
|
1748
|
+
}>;
|
|
1749
|
+
declare const messages: drizzle_orm_pg_core533.PgTableWithColumns<{
|
|
1016
1750
|
name: "messages";
|
|
1017
1751
|
schema: undefined;
|
|
1018
1752
|
columns: {
|
|
1019
|
-
createdAt:
|
|
1753
|
+
createdAt: drizzle_orm_pg_core533.PgColumn<{
|
|
1020
1754
|
name: "created_at";
|
|
1021
1755
|
tableName: "messages";
|
|
1022
1756
|
dataType: "string";
|
|
@@ -1033,7 +1767,7 @@ declare const messages: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1033
1767
|
identity: undefined;
|
|
1034
1768
|
generated: undefined;
|
|
1035
1769
|
}, {}, {}>;
|
|
1036
|
-
updatedAt:
|
|
1770
|
+
updatedAt: drizzle_orm_pg_core533.PgColumn<{
|
|
1037
1771
|
name: "updated_at";
|
|
1038
1772
|
tableName: "messages";
|
|
1039
1773
|
dataType: "string";
|
|
@@ -1050,7 +1784,7 @@ declare const messages: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1050
1784
|
identity: undefined;
|
|
1051
1785
|
generated: undefined;
|
|
1052
1786
|
}, {}, {}>;
|
|
1053
|
-
conversationId:
|
|
1787
|
+
conversationId: drizzle_orm_pg_core533.PgColumn<{
|
|
1054
1788
|
name: "conversation_id";
|
|
1055
1789
|
tableName: "messages";
|
|
1056
1790
|
dataType: "string";
|
|
@@ -1069,7 +1803,7 @@ declare const messages: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1069
1803
|
}, {}, {
|
|
1070
1804
|
length: 256;
|
|
1071
1805
|
}>;
|
|
1072
|
-
role:
|
|
1806
|
+
role: drizzle_orm_pg_core533.PgColumn<{
|
|
1073
1807
|
name: "role";
|
|
1074
1808
|
tableName: "messages";
|
|
1075
1809
|
dataType: "string";
|
|
@@ -1088,7 +1822,7 @@ declare const messages: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1088
1822
|
}, {}, {
|
|
1089
1823
|
length: 256;
|
|
1090
1824
|
}>;
|
|
1091
|
-
fromSubAgentId:
|
|
1825
|
+
fromSubAgentId: drizzle_orm_pg_core533.PgColumn<{
|
|
1092
1826
|
name: "from_sub_agent_id";
|
|
1093
1827
|
tableName: "messages";
|
|
1094
1828
|
dataType: "string";
|
|
@@ -1107,7 +1841,7 @@ declare const messages: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1107
1841
|
}, {}, {
|
|
1108
1842
|
length: 256;
|
|
1109
1843
|
}>;
|
|
1110
|
-
toSubAgentId:
|
|
1844
|
+
toSubAgentId: drizzle_orm_pg_core533.PgColumn<{
|
|
1111
1845
|
name: "to_sub_agent_id";
|
|
1112
1846
|
tableName: "messages";
|
|
1113
1847
|
dataType: "string";
|
|
@@ -1126,7 +1860,7 @@ declare const messages: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1126
1860
|
}, {}, {
|
|
1127
1861
|
length: 256;
|
|
1128
1862
|
}>;
|
|
1129
|
-
fromExternalAgentId:
|
|
1863
|
+
fromExternalAgentId: drizzle_orm_pg_core533.PgColumn<{
|
|
1130
1864
|
name: "from_external_sub_agent_id";
|
|
1131
1865
|
tableName: "messages";
|
|
1132
1866
|
dataType: "string";
|
|
@@ -1145,7 +1879,7 @@ declare const messages: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1145
1879
|
}, {}, {
|
|
1146
1880
|
length: 256;
|
|
1147
1881
|
}>;
|
|
1148
|
-
toExternalAgentId:
|
|
1882
|
+
toExternalAgentId: drizzle_orm_pg_core533.PgColumn<{
|
|
1149
1883
|
name: "to_external_sub_agent_id";
|
|
1150
1884
|
tableName: "messages";
|
|
1151
1885
|
dataType: "string";
|
|
@@ -1164,7 +1898,7 @@ declare const messages: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1164
1898
|
}, {}, {
|
|
1165
1899
|
length: 256;
|
|
1166
1900
|
}>;
|
|
1167
|
-
fromTeamAgentId:
|
|
1901
|
+
fromTeamAgentId: drizzle_orm_pg_core533.PgColumn<{
|
|
1168
1902
|
name: "from_team_agent_id";
|
|
1169
1903
|
tableName: "messages";
|
|
1170
1904
|
dataType: "string";
|
|
@@ -1183,7 +1917,7 @@ declare const messages: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1183
1917
|
}, {}, {
|
|
1184
1918
|
length: 256;
|
|
1185
1919
|
}>;
|
|
1186
|
-
toTeamAgentId:
|
|
1920
|
+
toTeamAgentId: drizzle_orm_pg_core533.PgColumn<{
|
|
1187
1921
|
name: "to_team_agent_id";
|
|
1188
1922
|
tableName: "messages";
|
|
1189
1923
|
dataType: "string";
|
|
@@ -1202,7 +1936,7 @@ declare const messages: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1202
1936
|
}, {}, {
|
|
1203
1937
|
length: 256;
|
|
1204
1938
|
}>;
|
|
1205
|
-
content:
|
|
1939
|
+
content: drizzle_orm_pg_core533.PgColumn<{
|
|
1206
1940
|
name: "content";
|
|
1207
1941
|
tableName: "messages";
|
|
1208
1942
|
dataType: "json";
|
|
@@ -1221,7 +1955,7 @@ declare const messages: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1221
1955
|
}, {}, {
|
|
1222
1956
|
$type: MessageContent;
|
|
1223
1957
|
}>;
|
|
1224
|
-
visibility:
|
|
1958
|
+
visibility: drizzle_orm_pg_core533.PgColumn<{
|
|
1225
1959
|
name: "visibility";
|
|
1226
1960
|
tableName: "messages";
|
|
1227
1961
|
dataType: "string";
|
|
@@ -1240,7 +1974,7 @@ declare const messages: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1240
1974
|
}, {}, {
|
|
1241
1975
|
length: 256;
|
|
1242
1976
|
}>;
|
|
1243
|
-
messageType:
|
|
1977
|
+
messageType: drizzle_orm_pg_core533.PgColumn<{
|
|
1244
1978
|
name: "message_type";
|
|
1245
1979
|
tableName: "messages";
|
|
1246
1980
|
dataType: "string";
|
|
@@ -1259,7 +1993,7 @@ declare const messages: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1259
1993
|
}, {}, {
|
|
1260
1994
|
length: 256;
|
|
1261
1995
|
}>;
|
|
1262
|
-
taskId:
|
|
1996
|
+
taskId: drizzle_orm_pg_core533.PgColumn<{
|
|
1263
1997
|
name: "task_id";
|
|
1264
1998
|
tableName: "messages";
|
|
1265
1999
|
dataType: "string";
|
|
@@ -1278,7 +2012,7 @@ declare const messages: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1278
2012
|
}, {}, {
|
|
1279
2013
|
length: 256;
|
|
1280
2014
|
}>;
|
|
1281
|
-
parentMessageId:
|
|
2015
|
+
parentMessageId: drizzle_orm_pg_core533.PgColumn<{
|
|
1282
2016
|
name: "parent_message_id";
|
|
1283
2017
|
tableName: "messages";
|
|
1284
2018
|
dataType: "string";
|
|
@@ -1297,7 +2031,7 @@ declare const messages: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1297
2031
|
}, {}, {
|
|
1298
2032
|
length: 256;
|
|
1299
2033
|
}>;
|
|
1300
|
-
a2aTaskId:
|
|
2034
|
+
a2aTaskId: drizzle_orm_pg_core533.PgColumn<{
|
|
1301
2035
|
name: "a2a_task_id";
|
|
1302
2036
|
tableName: "messages";
|
|
1303
2037
|
dataType: "string";
|
|
@@ -1316,7 +2050,7 @@ declare const messages: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1316
2050
|
}, {}, {
|
|
1317
2051
|
length: 256;
|
|
1318
2052
|
}>;
|
|
1319
|
-
a2aSessionId:
|
|
2053
|
+
a2aSessionId: drizzle_orm_pg_core533.PgColumn<{
|
|
1320
2054
|
name: "a2a_session_id";
|
|
1321
2055
|
tableName: "messages";
|
|
1322
2056
|
dataType: "string";
|
|
@@ -1335,7 +2069,7 @@ declare const messages: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1335
2069
|
}, {}, {
|
|
1336
2070
|
length: 256;
|
|
1337
2071
|
}>;
|
|
1338
|
-
metadata:
|
|
2072
|
+
metadata: drizzle_orm_pg_core533.PgColumn<{
|
|
1339
2073
|
name: "metadata";
|
|
1340
2074
|
tableName: "messages";
|
|
1341
2075
|
dataType: "json";
|
|
@@ -1354,7 +2088,7 @@ declare const messages: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1354
2088
|
}, {}, {
|
|
1355
2089
|
$type: MessageMetadata;
|
|
1356
2090
|
}>;
|
|
1357
|
-
projectId:
|
|
2091
|
+
projectId: drizzle_orm_pg_core533.PgColumn<{
|
|
1358
2092
|
name: "project_id";
|
|
1359
2093
|
tableName: "messages";
|
|
1360
2094
|
dataType: "string";
|
|
@@ -1373,7 +2107,7 @@ declare const messages: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1373
2107
|
}, {}, {
|
|
1374
2108
|
length: 256;
|
|
1375
2109
|
}>;
|
|
1376
|
-
tenantId:
|
|
2110
|
+
tenantId: drizzle_orm_pg_core533.PgColumn<{
|
|
1377
2111
|
name: "tenant_id";
|
|
1378
2112
|
tableName: "messages";
|
|
1379
2113
|
dataType: "string";
|
|
@@ -1392,7 +2126,7 @@ declare const messages: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1392
2126
|
}, {}, {
|
|
1393
2127
|
length: 256;
|
|
1394
2128
|
}>;
|
|
1395
|
-
id:
|
|
2129
|
+
id: drizzle_orm_pg_core533.PgColumn<{
|
|
1396
2130
|
name: "id";
|
|
1397
2131
|
tableName: "messages";
|
|
1398
2132
|
dataType: "string";
|
|
@@ -1414,11 +2148,11 @@ declare const messages: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1414
2148
|
};
|
|
1415
2149
|
dialect: "pg";
|
|
1416
2150
|
}>;
|
|
1417
|
-
declare const taskRelations:
|
|
2151
|
+
declare const taskRelations: drizzle_orm_pg_core533.PgTableWithColumns<{
|
|
1418
2152
|
name: "task_relations";
|
|
1419
2153
|
schema: undefined;
|
|
1420
2154
|
columns: {
|
|
1421
|
-
createdAt:
|
|
2155
|
+
createdAt: drizzle_orm_pg_core533.PgColumn<{
|
|
1422
2156
|
name: "created_at";
|
|
1423
2157
|
tableName: "task_relations";
|
|
1424
2158
|
dataType: "string";
|
|
@@ -1435,7 +2169,7 @@ declare const taskRelations: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1435
2169
|
identity: undefined;
|
|
1436
2170
|
generated: undefined;
|
|
1437
2171
|
}, {}, {}>;
|
|
1438
|
-
updatedAt:
|
|
2172
|
+
updatedAt: drizzle_orm_pg_core533.PgColumn<{
|
|
1439
2173
|
name: "updated_at";
|
|
1440
2174
|
tableName: "task_relations";
|
|
1441
2175
|
dataType: "string";
|
|
@@ -1452,7 +2186,7 @@ declare const taskRelations: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1452
2186
|
identity: undefined;
|
|
1453
2187
|
generated: undefined;
|
|
1454
2188
|
}, {}, {}>;
|
|
1455
|
-
parentTaskId:
|
|
2189
|
+
parentTaskId: drizzle_orm_pg_core533.PgColumn<{
|
|
1456
2190
|
name: "parent_task_id";
|
|
1457
2191
|
tableName: "task_relations";
|
|
1458
2192
|
dataType: "string";
|
|
@@ -1471,7 +2205,7 @@ declare const taskRelations: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1471
2205
|
}, {}, {
|
|
1472
2206
|
length: 256;
|
|
1473
2207
|
}>;
|
|
1474
|
-
childTaskId:
|
|
2208
|
+
childTaskId: drizzle_orm_pg_core533.PgColumn<{
|
|
1475
2209
|
name: "child_task_id";
|
|
1476
2210
|
tableName: "task_relations";
|
|
1477
2211
|
dataType: "string";
|
|
@@ -1490,7 +2224,7 @@ declare const taskRelations: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1490
2224
|
}, {}, {
|
|
1491
2225
|
length: 256;
|
|
1492
2226
|
}>;
|
|
1493
|
-
relationType:
|
|
2227
|
+
relationType: drizzle_orm_pg_core533.PgColumn<{
|
|
1494
2228
|
name: "relation_type";
|
|
1495
2229
|
tableName: "task_relations";
|
|
1496
2230
|
dataType: "string";
|
|
@@ -1509,7 +2243,7 @@ declare const taskRelations: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1509
2243
|
}, {}, {
|
|
1510
2244
|
length: 256;
|
|
1511
2245
|
}>;
|
|
1512
|
-
projectId:
|
|
2246
|
+
projectId: drizzle_orm_pg_core533.PgColumn<{
|
|
1513
2247
|
name: "project_id";
|
|
1514
2248
|
tableName: "task_relations";
|
|
1515
2249
|
dataType: "string";
|
|
@@ -1528,7 +2262,7 @@ declare const taskRelations: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1528
2262
|
}, {}, {
|
|
1529
2263
|
length: 256;
|
|
1530
2264
|
}>;
|
|
1531
|
-
tenantId:
|
|
2265
|
+
tenantId: drizzle_orm_pg_core533.PgColumn<{
|
|
1532
2266
|
name: "tenant_id";
|
|
1533
2267
|
tableName: "task_relations";
|
|
1534
2268
|
dataType: "string";
|
|
@@ -1547,7 +2281,7 @@ declare const taskRelations: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1547
2281
|
}, {}, {
|
|
1548
2282
|
length: 256;
|
|
1549
2283
|
}>;
|
|
1550
|
-
id:
|
|
2284
|
+
id: drizzle_orm_pg_core533.PgColumn<{
|
|
1551
2285
|
name: "id";
|
|
1552
2286
|
tableName: "task_relations";
|
|
1553
2287
|
dataType: "string";
|
|
@@ -1569,11 +2303,11 @@ declare const taskRelations: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1569
2303
|
};
|
|
1570
2304
|
dialect: "pg";
|
|
1571
2305
|
}>;
|
|
1572
|
-
declare const ledgerArtifacts:
|
|
2306
|
+
declare const ledgerArtifacts: drizzle_orm_pg_core533.PgTableWithColumns<{
|
|
1573
2307
|
name: "ledger_artifacts";
|
|
1574
2308
|
schema: undefined;
|
|
1575
2309
|
columns: {
|
|
1576
|
-
createdAt:
|
|
2310
|
+
createdAt: drizzle_orm_pg_core533.PgColumn<{
|
|
1577
2311
|
name: "created_at";
|
|
1578
2312
|
tableName: "ledger_artifacts";
|
|
1579
2313
|
dataType: "string";
|
|
@@ -1590,7 +2324,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1590
2324
|
identity: undefined;
|
|
1591
2325
|
generated: undefined;
|
|
1592
2326
|
}, {}, {}>;
|
|
1593
|
-
updatedAt:
|
|
2327
|
+
updatedAt: drizzle_orm_pg_core533.PgColumn<{
|
|
1594
2328
|
name: "updated_at";
|
|
1595
2329
|
tableName: "ledger_artifacts";
|
|
1596
2330
|
dataType: "string";
|
|
@@ -1607,7 +2341,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1607
2341
|
identity: undefined;
|
|
1608
2342
|
generated: undefined;
|
|
1609
2343
|
}, {}, {}>;
|
|
1610
|
-
taskId:
|
|
2344
|
+
taskId: drizzle_orm_pg_core533.PgColumn<{
|
|
1611
2345
|
name: "task_id";
|
|
1612
2346
|
tableName: "ledger_artifacts";
|
|
1613
2347
|
dataType: "string";
|
|
@@ -1626,7 +2360,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1626
2360
|
}, {}, {
|
|
1627
2361
|
length: 256;
|
|
1628
2362
|
}>;
|
|
1629
|
-
toolCallId:
|
|
2363
|
+
toolCallId: drizzle_orm_pg_core533.PgColumn<{
|
|
1630
2364
|
name: "tool_call_id";
|
|
1631
2365
|
tableName: "ledger_artifacts";
|
|
1632
2366
|
dataType: "string";
|
|
@@ -1645,7 +2379,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1645
2379
|
}, {}, {
|
|
1646
2380
|
length: 256;
|
|
1647
2381
|
}>;
|
|
1648
|
-
contextId:
|
|
2382
|
+
contextId: drizzle_orm_pg_core533.PgColumn<{
|
|
1649
2383
|
name: "context_id";
|
|
1650
2384
|
tableName: "ledger_artifacts";
|
|
1651
2385
|
dataType: "string";
|
|
@@ -1664,7 +2398,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1664
2398
|
}, {}, {
|
|
1665
2399
|
length: 256;
|
|
1666
2400
|
}>;
|
|
1667
|
-
type:
|
|
2401
|
+
type: drizzle_orm_pg_core533.PgColumn<{
|
|
1668
2402
|
name: "type";
|
|
1669
2403
|
tableName: "ledger_artifacts";
|
|
1670
2404
|
dataType: "string";
|
|
@@ -1683,7 +2417,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1683
2417
|
}, {}, {
|
|
1684
2418
|
length: 256;
|
|
1685
2419
|
}>;
|
|
1686
|
-
name:
|
|
2420
|
+
name: drizzle_orm_pg_core533.PgColumn<{
|
|
1687
2421
|
name: "name";
|
|
1688
2422
|
tableName: "ledger_artifacts";
|
|
1689
2423
|
dataType: "string";
|
|
@@ -1702,7 +2436,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1702
2436
|
}, {}, {
|
|
1703
2437
|
length: 256;
|
|
1704
2438
|
}>;
|
|
1705
|
-
description:
|
|
2439
|
+
description: drizzle_orm_pg_core533.PgColumn<{
|
|
1706
2440
|
name: "description";
|
|
1707
2441
|
tableName: "ledger_artifacts";
|
|
1708
2442
|
dataType: "string";
|
|
@@ -1719,7 +2453,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1719
2453
|
identity: undefined;
|
|
1720
2454
|
generated: undefined;
|
|
1721
2455
|
}, {}, {}>;
|
|
1722
|
-
parts:
|
|
2456
|
+
parts: drizzle_orm_pg_core533.PgColumn<{
|
|
1723
2457
|
name: "parts";
|
|
1724
2458
|
tableName: "ledger_artifacts";
|
|
1725
2459
|
dataType: "json";
|
|
@@ -1738,7 +2472,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1738
2472
|
}, {}, {
|
|
1739
2473
|
$type: Part[] | null;
|
|
1740
2474
|
}>;
|
|
1741
|
-
metadata:
|
|
2475
|
+
metadata: drizzle_orm_pg_core533.PgColumn<{
|
|
1742
2476
|
name: "metadata";
|
|
1743
2477
|
tableName: "ledger_artifacts";
|
|
1744
2478
|
dataType: "json";
|
|
@@ -1757,7 +2491,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1757
2491
|
}, {}, {
|
|
1758
2492
|
$type: Record<string, unknown> | null;
|
|
1759
2493
|
}>;
|
|
1760
|
-
summary:
|
|
2494
|
+
summary: drizzle_orm_pg_core533.PgColumn<{
|
|
1761
2495
|
name: "summary";
|
|
1762
2496
|
tableName: "ledger_artifacts";
|
|
1763
2497
|
dataType: "string";
|
|
@@ -1774,7 +2508,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1774
2508
|
identity: undefined;
|
|
1775
2509
|
generated: undefined;
|
|
1776
2510
|
}, {}, {}>;
|
|
1777
|
-
mime:
|
|
2511
|
+
mime: drizzle_orm_pg_core533.PgColumn<{
|
|
1778
2512
|
name: "mime";
|
|
1779
2513
|
tableName: "ledger_artifacts";
|
|
1780
2514
|
dataType: "json";
|
|
@@ -1793,7 +2527,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1793
2527
|
}, {}, {
|
|
1794
2528
|
$type: string[] | null;
|
|
1795
2529
|
}>;
|
|
1796
|
-
visibility:
|
|
2530
|
+
visibility: drizzle_orm_pg_core533.PgColumn<{
|
|
1797
2531
|
name: "visibility";
|
|
1798
2532
|
tableName: "ledger_artifacts";
|
|
1799
2533
|
dataType: "string";
|
|
@@ -1812,7 +2546,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1812
2546
|
}, {}, {
|
|
1813
2547
|
length: 256;
|
|
1814
2548
|
}>;
|
|
1815
|
-
allowedAgents:
|
|
2549
|
+
allowedAgents: drizzle_orm_pg_core533.PgColumn<{
|
|
1816
2550
|
name: "allowed_agents";
|
|
1817
2551
|
tableName: "ledger_artifacts";
|
|
1818
2552
|
dataType: "json";
|
|
@@ -1831,7 +2565,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1831
2565
|
}, {}, {
|
|
1832
2566
|
$type: string[] | null;
|
|
1833
2567
|
}>;
|
|
1834
|
-
derivedFrom:
|
|
2568
|
+
derivedFrom: drizzle_orm_pg_core533.PgColumn<{
|
|
1835
2569
|
name: "derived_from";
|
|
1836
2570
|
tableName: "ledger_artifacts";
|
|
1837
2571
|
dataType: "string";
|
|
@@ -1850,7 +2584,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1850
2584
|
}, {}, {
|
|
1851
2585
|
length: 256;
|
|
1852
2586
|
}>;
|
|
1853
|
-
projectId:
|
|
2587
|
+
projectId: drizzle_orm_pg_core533.PgColumn<{
|
|
1854
2588
|
name: "project_id";
|
|
1855
2589
|
tableName: "ledger_artifacts";
|
|
1856
2590
|
dataType: "string";
|
|
@@ -1869,7 +2603,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1869
2603
|
}, {}, {
|
|
1870
2604
|
length: 256;
|
|
1871
2605
|
}>;
|
|
1872
|
-
tenantId:
|
|
2606
|
+
tenantId: drizzle_orm_pg_core533.PgColumn<{
|
|
1873
2607
|
name: "tenant_id";
|
|
1874
2608
|
tableName: "ledger_artifacts";
|
|
1875
2609
|
dataType: "string";
|
|
@@ -1888,7 +2622,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1888
2622
|
}, {}, {
|
|
1889
2623
|
length: 256;
|
|
1890
2624
|
}>;
|
|
1891
|
-
id:
|
|
2625
|
+
id: drizzle_orm_pg_core533.PgColumn<{
|
|
1892
2626
|
name: "id";
|
|
1893
2627
|
tableName: "ledger_artifacts";
|
|
1894
2628
|
dataType: "string";
|
|
@@ -1910,11 +2644,11 @@ declare const ledgerArtifacts: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1910
2644
|
};
|
|
1911
2645
|
dialect: "pg";
|
|
1912
2646
|
}>;
|
|
1913
|
-
declare const contextCache:
|
|
2647
|
+
declare const contextCache: drizzle_orm_pg_core533.PgTableWithColumns<{
|
|
1914
2648
|
name: "context_cache";
|
|
1915
2649
|
schema: undefined;
|
|
1916
2650
|
columns: {
|
|
1917
|
-
createdAt:
|
|
2651
|
+
createdAt: drizzle_orm_pg_core533.PgColumn<{
|
|
1918
2652
|
name: "created_at";
|
|
1919
2653
|
tableName: "context_cache";
|
|
1920
2654
|
dataType: "string";
|
|
@@ -1931,7 +2665,7 @@ declare const contextCache: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1931
2665
|
identity: undefined;
|
|
1932
2666
|
generated: undefined;
|
|
1933
2667
|
}, {}, {}>;
|
|
1934
|
-
updatedAt:
|
|
2668
|
+
updatedAt: drizzle_orm_pg_core533.PgColumn<{
|
|
1935
2669
|
name: "updated_at";
|
|
1936
2670
|
tableName: "context_cache";
|
|
1937
2671
|
dataType: "string";
|
|
@@ -1948,7 +2682,7 @@ declare const contextCache: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1948
2682
|
identity: undefined;
|
|
1949
2683
|
generated: undefined;
|
|
1950
2684
|
}, {}, {}>;
|
|
1951
|
-
conversationId:
|
|
2685
|
+
conversationId: drizzle_orm_pg_core533.PgColumn<{
|
|
1952
2686
|
name: "conversation_id";
|
|
1953
2687
|
tableName: "context_cache";
|
|
1954
2688
|
dataType: "string";
|
|
@@ -1967,7 +2701,7 @@ declare const contextCache: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1967
2701
|
}, {}, {
|
|
1968
2702
|
length: 256;
|
|
1969
2703
|
}>;
|
|
1970
|
-
contextConfigId:
|
|
2704
|
+
contextConfigId: drizzle_orm_pg_core533.PgColumn<{
|
|
1971
2705
|
name: "context_config_id";
|
|
1972
2706
|
tableName: "context_cache";
|
|
1973
2707
|
dataType: "string";
|
|
@@ -1986,7 +2720,7 @@ declare const contextCache: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
1986
2720
|
}, {}, {
|
|
1987
2721
|
length: 256;
|
|
1988
2722
|
}>;
|
|
1989
|
-
contextVariableKey:
|
|
2723
|
+
contextVariableKey: drizzle_orm_pg_core533.PgColumn<{
|
|
1990
2724
|
name: "context_variable_key";
|
|
1991
2725
|
tableName: "context_cache";
|
|
1992
2726
|
dataType: "string";
|
|
@@ -2005,13 +2739,13 @@ declare const contextCache: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
2005
2739
|
}, {}, {
|
|
2006
2740
|
length: 256;
|
|
2007
2741
|
}>;
|
|
2008
|
-
ref:
|
|
2742
|
+
ref: drizzle_orm_pg_core533.PgColumn<{
|
|
2009
2743
|
name: "ref";
|
|
2010
2744
|
tableName: "context_cache";
|
|
2011
2745
|
dataType: "json";
|
|
2012
2746
|
columnType: "PgJsonb";
|
|
2013
2747
|
data: {
|
|
2014
|
-
type: "
|
|
2748
|
+
type: "commit" | "tag" | "branch";
|
|
2015
2749
|
name: string;
|
|
2016
2750
|
hash: string;
|
|
2017
2751
|
};
|
|
@@ -2027,12 +2761,12 @@ declare const contextCache: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
2027
2761
|
generated: undefined;
|
|
2028
2762
|
}, {}, {
|
|
2029
2763
|
$type: {
|
|
2030
|
-
type: "
|
|
2764
|
+
type: "commit" | "tag" | "branch";
|
|
2031
2765
|
name: string;
|
|
2032
2766
|
hash: string;
|
|
2033
2767
|
};
|
|
2034
2768
|
}>;
|
|
2035
|
-
value:
|
|
2769
|
+
value: drizzle_orm_pg_core533.PgColumn<{
|
|
2036
2770
|
name: "value";
|
|
2037
2771
|
tableName: "context_cache";
|
|
2038
2772
|
dataType: "json";
|
|
@@ -2051,7 +2785,7 @@ declare const contextCache: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
2051
2785
|
}, {}, {
|
|
2052
2786
|
$type: unknown;
|
|
2053
2787
|
}>;
|
|
2054
|
-
requestHash:
|
|
2788
|
+
requestHash: drizzle_orm_pg_core533.PgColumn<{
|
|
2055
2789
|
name: "request_hash";
|
|
2056
2790
|
tableName: "context_cache";
|
|
2057
2791
|
dataType: "string";
|
|
@@ -2070,7 +2804,7 @@ declare const contextCache: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
2070
2804
|
}, {}, {
|
|
2071
2805
|
length: 256;
|
|
2072
2806
|
}>;
|
|
2073
|
-
fetchedAt:
|
|
2807
|
+
fetchedAt: drizzle_orm_pg_core533.PgColumn<{
|
|
2074
2808
|
name: "fetched_at";
|
|
2075
2809
|
tableName: "context_cache";
|
|
2076
2810
|
dataType: "string";
|
|
@@ -2087,7 +2821,7 @@ declare const contextCache: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
2087
2821
|
identity: undefined;
|
|
2088
2822
|
generated: undefined;
|
|
2089
2823
|
}, {}, {}>;
|
|
2090
|
-
fetchSource:
|
|
2824
|
+
fetchSource: drizzle_orm_pg_core533.PgColumn<{
|
|
2091
2825
|
name: "fetch_source";
|
|
2092
2826
|
tableName: "context_cache";
|
|
2093
2827
|
dataType: "string";
|
|
@@ -2106,7 +2840,7 @@ declare const contextCache: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
2106
2840
|
}, {}, {
|
|
2107
2841
|
length: 256;
|
|
2108
2842
|
}>;
|
|
2109
|
-
projectId:
|
|
2843
|
+
projectId: drizzle_orm_pg_core533.PgColumn<{
|
|
2110
2844
|
name: "project_id";
|
|
2111
2845
|
tableName: "context_cache";
|
|
2112
2846
|
dataType: "string";
|
|
@@ -2125,7 +2859,7 @@ declare const contextCache: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
2125
2859
|
}, {}, {
|
|
2126
2860
|
length: 256;
|
|
2127
2861
|
}>;
|
|
2128
|
-
tenantId:
|
|
2862
|
+
tenantId: drizzle_orm_pg_core533.PgColumn<{
|
|
2129
2863
|
name: "tenant_id";
|
|
2130
2864
|
tableName: "context_cache";
|
|
2131
2865
|
dataType: "string";
|
|
@@ -2144,7 +2878,7 @@ declare const contextCache: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
2144
2878
|
}, {}, {
|
|
2145
2879
|
length: 256;
|
|
2146
2880
|
}>;
|
|
2147
|
-
id:
|
|
2881
|
+
id: drizzle_orm_pg_core533.PgColumn<{
|
|
2148
2882
|
name: "id";
|
|
2149
2883
|
tableName: "context_cache";
|
|
2150
2884
|
dataType: "string";
|
|
@@ -2179,11 +2913,11 @@ declare const contextCache: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
2179
2913
|
* datasetRunConfigId (optional: if created from a config),
|
|
2180
2914
|
* evaluationJobConfigId (optional: links to evaluation job created for this run), and timestamps
|
|
2181
2915
|
*/
|
|
2182
|
-
declare const datasetRun:
|
|
2916
|
+
declare const datasetRun: drizzle_orm_pg_core533.PgTableWithColumns<{
|
|
2183
2917
|
name: "dataset_run";
|
|
2184
2918
|
schema: undefined;
|
|
2185
2919
|
columns: {
|
|
2186
|
-
createdAt:
|
|
2920
|
+
createdAt: drizzle_orm_pg_core533.PgColumn<{
|
|
2187
2921
|
name: "created_at";
|
|
2188
2922
|
tableName: "dataset_run";
|
|
2189
2923
|
dataType: "string";
|
|
@@ -2200,7 +2934,7 @@ declare const datasetRun: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
2200
2934
|
identity: undefined;
|
|
2201
2935
|
generated: undefined;
|
|
2202
2936
|
}, {}, {}>;
|
|
2203
|
-
updatedAt:
|
|
2937
|
+
updatedAt: drizzle_orm_pg_core533.PgColumn<{
|
|
2204
2938
|
name: "updated_at";
|
|
2205
2939
|
tableName: "dataset_run";
|
|
2206
2940
|
dataType: "string";
|
|
@@ -2217,7 +2951,7 @@ declare const datasetRun: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
2217
2951
|
identity: undefined;
|
|
2218
2952
|
generated: undefined;
|
|
2219
2953
|
}, {}, {}>;
|
|
2220
|
-
datasetId:
|
|
2954
|
+
datasetId: drizzle_orm_pg_core533.PgColumn<{
|
|
2221
2955
|
name: "dataset_id";
|
|
2222
2956
|
tableName: "dataset_run";
|
|
2223
2957
|
dataType: "string";
|
|
@@ -2234,7 +2968,7 @@ declare const datasetRun: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
2234
2968
|
identity: undefined;
|
|
2235
2969
|
generated: undefined;
|
|
2236
2970
|
}, {}, {}>;
|
|
2237
|
-
datasetRunConfigId:
|
|
2971
|
+
datasetRunConfigId: drizzle_orm_pg_core533.PgColumn<{
|
|
2238
2972
|
name: "dataset_run_config_id";
|
|
2239
2973
|
tableName: "dataset_run";
|
|
2240
2974
|
dataType: "string";
|
|
@@ -2251,7 +2985,7 @@ declare const datasetRun: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
2251
2985
|
identity: undefined;
|
|
2252
2986
|
generated: undefined;
|
|
2253
2987
|
}, {}, {}>;
|
|
2254
|
-
evaluationJobConfigId:
|
|
2988
|
+
evaluationJobConfigId: drizzle_orm_pg_core533.PgColumn<{
|
|
2255
2989
|
name: "evaluation_job_config_id";
|
|
2256
2990
|
tableName: "dataset_run";
|
|
2257
2991
|
dataType: "string";
|
|
@@ -2268,7 +3002,7 @@ declare const datasetRun: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
2268
3002
|
identity: undefined;
|
|
2269
3003
|
generated: undefined;
|
|
2270
3004
|
}, {}, {}>;
|
|
2271
|
-
projectId:
|
|
3005
|
+
projectId: drizzle_orm_pg_core533.PgColumn<{
|
|
2272
3006
|
name: "project_id";
|
|
2273
3007
|
tableName: "dataset_run";
|
|
2274
3008
|
dataType: "string";
|
|
@@ -2287,7 +3021,7 @@ declare const datasetRun: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
2287
3021
|
}, {}, {
|
|
2288
3022
|
length: 256;
|
|
2289
3023
|
}>;
|
|
2290
|
-
tenantId:
|
|
3024
|
+
tenantId: drizzle_orm_pg_core533.PgColumn<{
|
|
2291
3025
|
name: "tenant_id";
|
|
2292
3026
|
tableName: "dataset_run";
|
|
2293
3027
|
dataType: "string";
|
|
@@ -2306,7 +3040,7 @@ declare const datasetRun: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
2306
3040
|
}, {}, {
|
|
2307
3041
|
length: 256;
|
|
2308
3042
|
}>;
|
|
2309
|
-
id:
|
|
3043
|
+
id: drizzle_orm_pg_core533.PgColumn<{
|
|
2310
3044
|
name: "id";
|
|
2311
3045
|
tableName: "dataset_run";
|
|
2312
3046
|
dataType: "string";
|
|
@@ -2339,11 +3073,11 @@ declare const datasetRun: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
2339
3073
|
* unique constraint on (datasetRunId, conversationId) ensures one conversation per datasetRun,
|
|
2340
3074
|
* and timestamps
|
|
2341
3075
|
*/
|
|
2342
|
-
declare const datasetRunConversationRelations:
|
|
3076
|
+
declare const datasetRunConversationRelations: drizzle_orm_pg_core533.PgTableWithColumns<{
|
|
2343
3077
|
name: "dataset_run_conversation_relations";
|
|
2344
3078
|
schema: undefined;
|
|
2345
3079
|
columns: {
|
|
2346
|
-
createdAt:
|
|
3080
|
+
createdAt: drizzle_orm_pg_core533.PgColumn<{
|
|
2347
3081
|
name: "created_at";
|
|
2348
3082
|
tableName: "dataset_run_conversation_relations";
|
|
2349
3083
|
dataType: "string";
|
|
@@ -2360,7 +3094,7 @@ declare const datasetRunConversationRelations: drizzle_orm_pg_core1695.PgTableWi
|
|
|
2360
3094
|
identity: undefined;
|
|
2361
3095
|
generated: undefined;
|
|
2362
3096
|
}, {}, {}>;
|
|
2363
|
-
updatedAt:
|
|
3097
|
+
updatedAt: drizzle_orm_pg_core533.PgColumn<{
|
|
2364
3098
|
name: "updated_at";
|
|
2365
3099
|
tableName: "dataset_run_conversation_relations";
|
|
2366
3100
|
dataType: "string";
|
|
@@ -2377,7 +3111,7 @@ declare const datasetRunConversationRelations: drizzle_orm_pg_core1695.PgTableWi
|
|
|
2377
3111
|
identity: undefined;
|
|
2378
3112
|
generated: undefined;
|
|
2379
3113
|
}, {}, {}>;
|
|
2380
|
-
datasetRunId:
|
|
3114
|
+
datasetRunId: drizzle_orm_pg_core533.PgColumn<{
|
|
2381
3115
|
name: "dataset_run_id";
|
|
2382
3116
|
tableName: "dataset_run_conversation_relations";
|
|
2383
3117
|
dataType: "string";
|
|
@@ -2394,7 +3128,7 @@ declare const datasetRunConversationRelations: drizzle_orm_pg_core1695.PgTableWi
|
|
|
2394
3128
|
identity: undefined;
|
|
2395
3129
|
generated: undefined;
|
|
2396
3130
|
}, {}, {}>;
|
|
2397
|
-
conversationId:
|
|
3131
|
+
conversationId: drizzle_orm_pg_core533.PgColumn<{
|
|
2398
3132
|
name: "conversation_id";
|
|
2399
3133
|
tableName: "dataset_run_conversation_relations";
|
|
2400
3134
|
dataType: "string";
|
|
@@ -2411,7 +3145,7 @@ declare const datasetRunConversationRelations: drizzle_orm_pg_core1695.PgTableWi
|
|
|
2411
3145
|
identity: undefined;
|
|
2412
3146
|
generated: undefined;
|
|
2413
3147
|
}, {}, {}>;
|
|
2414
|
-
datasetItemId:
|
|
3148
|
+
datasetItemId: drizzle_orm_pg_core533.PgColumn<{
|
|
2415
3149
|
name: "dataset_item_id";
|
|
2416
3150
|
tableName: "dataset_run_conversation_relations";
|
|
2417
3151
|
dataType: "string";
|
|
@@ -2428,7 +3162,7 @@ declare const datasetRunConversationRelations: drizzle_orm_pg_core1695.PgTableWi
|
|
|
2428
3162
|
identity: undefined;
|
|
2429
3163
|
generated: undefined;
|
|
2430
3164
|
}, {}, {}>;
|
|
2431
|
-
projectId:
|
|
3165
|
+
projectId: drizzle_orm_pg_core533.PgColumn<{
|
|
2432
3166
|
name: "project_id";
|
|
2433
3167
|
tableName: "dataset_run_conversation_relations";
|
|
2434
3168
|
dataType: "string";
|
|
@@ -2447,7 +3181,7 @@ declare const datasetRunConversationRelations: drizzle_orm_pg_core1695.PgTableWi
|
|
|
2447
3181
|
}, {}, {
|
|
2448
3182
|
length: 256;
|
|
2449
3183
|
}>;
|
|
2450
|
-
tenantId:
|
|
3184
|
+
tenantId: drizzle_orm_pg_core533.PgColumn<{
|
|
2451
3185
|
name: "tenant_id";
|
|
2452
3186
|
tableName: "dataset_run_conversation_relations";
|
|
2453
3187
|
dataType: "string";
|
|
@@ -2466,7 +3200,7 @@ declare const datasetRunConversationRelations: drizzle_orm_pg_core1695.PgTableWi
|
|
|
2466
3200
|
}, {}, {
|
|
2467
3201
|
length: 256;
|
|
2468
3202
|
}>;
|
|
2469
|
-
id:
|
|
3203
|
+
id: drizzle_orm_pg_core533.PgColumn<{
|
|
2470
3204
|
name: "id";
|
|
2471
3205
|
tableName: "dataset_run_conversation_relations";
|
|
2472
3206
|
dataType: "string";
|
|
@@ -2499,11 +3233,11 @@ declare const datasetRunConversationRelations: drizzle_orm_pg_core1695.PgTableWi
|
|
|
2499
3233
|
* evaluationRunConfigId (optional: if created from a run config),
|
|
2500
3234
|
* and timestamps
|
|
2501
3235
|
*/
|
|
2502
|
-
declare const evaluationRun:
|
|
3236
|
+
declare const evaluationRun: drizzle_orm_pg_core533.PgTableWithColumns<{
|
|
2503
3237
|
name: "evaluation_run";
|
|
2504
3238
|
schema: undefined;
|
|
2505
3239
|
columns: {
|
|
2506
|
-
createdAt:
|
|
3240
|
+
createdAt: drizzle_orm_pg_core533.PgColumn<{
|
|
2507
3241
|
name: "created_at";
|
|
2508
3242
|
tableName: "evaluation_run";
|
|
2509
3243
|
dataType: "string";
|
|
@@ -2520,7 +3254,7 @@ declare const evaluationRun: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
2520
3254
|
identity: undefined;
|
|
2521
3255
|
generated: undefined;
|
|
2522
3256
|
}, {}, {}>;
|
|
2523
|
-
updatedAt:
|
|
3257
|
+
updatedAt: drizzle_orm_pg_core533.PgColumn<{
|
|
2524
3258
|
name: "updated_at";
|
|
2525
3259
|
tableName: "evaluation_run";
|
|
2526
3260
|
dataType: "string";
|
|
@@ -2537,7 +3271,7 @@ declare const evaluationRun: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
2537
3271
|
identity: undefined;
|
|
2538
3272
|
generated: undefined;
|
|
2539
3273
|
}, {}, {}>;
|
|
2540
|
-
evaluationJobConfigId:
|
|
3274
|
+
evaluationJobConfigId: drizzle_orm_pg_core533.PgColumn<{
|
|
2541
3275
|
name: "evaluation_job_config_id";
|
|
2542
3276
|
tableName: "evaluation_run";
|
|
2543
3277
|
dataType: "string";
|
|
@@ -2554,7 +3288,7 @@ declare const evaluationRun: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
2554
3288
|
identity: undefined;
|
|
2555
3289
|
generated: undefined;
|
|
2556
3290
|
}, {}, {}>;
|
|
2557
|
-
evaluationRunConfigId:
|
|
3291
|
+
evaluationRunConfigId: drizzle_orm_pg_core533.PgColumn<{
|
|
2558
3292
|
name: "evaluation_run_config_id";
|
|
2559
3293
|
tableName: "evaluation_run";
|
|
2560
3294
|
dataType: "string";
|
|
@@ -2571,7 +3305,7 @@ declare const evaluationRun: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
2571
3305
|
identity: undefined;
|
|
2572
3306
|
generated: undefined;
|
|
2573
3307
|
}, {}, {}>;
|
|
2574
|
-
projectId:
|
|
3308
|
+
projectId: drizzle_orm_pg_core533.PgColumn<{
|
|
2575
3309
|
name: "project_id";
|
|
2576
3310
|
tableName: "evaluation_run";
|
|
2577
3311
|
dataType: "string";
|
|
@@ -2590,7 +3324,7 @@ declare const evaluationRun: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
2590
3324
|
}, {}, {
|
|
2591
3325
|
length: 256;
|
|
2592
3326
|
}>;
|
|
2593
|
-
tenantId:
|
|
3327
|
+
tenantId: drizzle_orm_pg_core533.PgColumn<{
|
|
2594
3328
|
name: "tenant_id";
|
|
2595
3329
|
tableName: "evaluation_run";
|
|
2596
3330
|
dataType: "string";
|
|
@@ -2609,7 +3343,7 @@ declare const evaluationRun: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
2609
3343
|
}, {}, {
|
|
2610
3344
|
length: 256;
|
|
2611
3345
|
}>;
|
|
2612
|
-
id:
|
|
3346
|
+
id: drizzle_orm_pg_core533.PgColumn<{
|
|
2613
3347
|
name: "id";
|
|
2614
3348
|
tableName: "evaluation_run";
|
|
2615
3349
|
dataType: "string";
|
|
@@ -2640,11 +3374,11 @@ declare const evaluationRun: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
2640
3374
|
* evaluationRunId (optional, links to evaluationRun),
|
|
2641
3375
|
* output (evaluation result as MessageContent), and timestamps
|
|
2642
3376
|
*/
|
|
2643
|
-
declare const evaluationResult:
|
|
3377
|
+
declare const evaluationResult: drizzle_orm_pg_core533.PgTableWithColumns<{
|
|
2644
3378
|
name: "evaluation_result";
|
|
2645
3379
|
schema: undefined;
|
|
2646
3380
|
columns: {
|
|
2647
|
-
createdAt:
|
|
3381
|
+
createdAt: drizzle_orm_pg_core533.PgColumn<{
|
|
2648
3382
|
name: "created_at";
|
|
2649
3383
|
tableName: "evaluation_result";
|
|
2650
3384
|
dataType: "string";
|
|
@@ -2661,7 +3395,7 @@ declare const evaluationResult: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
2661
3395
|
identity: undefined;
|
|
2662
3396
|
generated: undefined;
|
|
2663
3397
|
}, {}, {}>;
|
|
2664
|
-
updatedAt:
|
|
3398
|
+
updatedAt: drizzle_orm_pg_core533.PgColumn<{
|
|
2665
3399
|
name: "updated_at";
|
|
2666
3400
|
tableName: "evaluation_result";
|
|
2667
3401
|
dataType: "string";
|
|
@@ -2678,7 +3412,7 @@ declare const evaluationResult: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
2678
3412
|
identity: undefined;
|
|
2679
3413
|
generated: undefined;
|
|
2680
3414
|
}, {}, {}>;
|
|
2681
|
-
conversationId:
|
|
3415
|
+
conversationId: drizzle_orm_pg_core533.PgColumn<{
|
|
2682
3416
|
name: "conversation_id";
|
|
2683
3417
|
tableName: "evaluation_result";
|
|
2684
3418
|
dataType: "string";
|
|
@@ -2695,7 +3429,7 @@ declare const evaluationResult: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
2695
3429
|
identity: undefined;
|
|
2696
3430
|
generated: undefined;
|
|
2697
3431
|
}, {}, {}>;
|
|
2698
|
-
evaluatorId:
|
|
3432
|
+
evaluatorId: drizzle_orm_pg_core533.PgColumn<{
|
|
2699
3433
|
name: "evaluator_id";
|
|
2700
3434
|
tableName: "evaluation_result";
|
|
2701
3435
|
dataType: "string";
|
|
@@ -2712,7 +3446,7 @@ declare const evaluationResult: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
2712
3446
|
identity: undefined;
|
|
2713
3447
|
generated: undefined;
|
|
2714
3448
|
}, {}, {}>;
|
|
2715
|
-
evaluationRunId:
|
|
3449
|
+
evaluationRunId: drizzle_orm_pg_core533.PgColumn<{
|
|
2716
3450
|
name: "evaluation_run_id";
|
|
2717
3451
|
tableName: "evaluation_result";
|
|
2718
3452
|
dataType: "string";
|
|
@@ -2729,7 +3463,7 @@ declare const evaluationResult: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
2729
3463
|
identity: undefined;
|
|
2730
3464
|
generated: undefined;
|
|
2731
3465
|
}, {}, {}>;
|
|
2732
|
-
output:
|
|
3466
|
+
output: drizzle_orm_pg_core533.PgColumn<{
|
|
2733
3467
|
name: "output";
|
|
2734
3468
|
tableName: "evaluation_result";
|
|
2735
3469
|
dataType: "json";
|
|
@@ -2748,7 +3482,7 @@ declare const evaluationResult: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
2748
3482
|
}, {}, {
|
|
2749
3483
|
$type: MessageContent;
|
|
2750
3484
|
}>;
|
|
2751
|
-
projectId:
|
|
3485
|
+
projectId: drizzle_orm_pg_core533.PgColumn<{
|
|
2752
3486
|
name: "project_id";
|
|
2753
3487
|
tableName: "evaluation_result";
|
|
2754
3488
|
dataType: "string";
|
|
@@ -2767,7 +3501,7 @@ declare const evaluationResult: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
2767
3501
|
}, {}, {
|
|
2768
3502
|
length: 256;
|
|
2769
3503
|
}>;
|
|
2770
|
-
tenantId:
|
|
3504
|
+
tenantId: drizzle_orm_pg_core533.PgColumn<{
|
|
2771
3505
|
name: "tenant_id";
|
|
2772
3506
|
tableName: "evaluation_result";
|
|
2773
3507
|
dataType: "string";
|
|
@@ -2786,7 +3520,7 @@ declare const evaluationResult: drizzle_orm_pg_core1695.PgTableWithColumns<{
|
|
|
2786
3520
|
}, {}, {
|
|
2787
3521
|
length: 256;
|
|
2788
3522
|
}>;
|
|
2789
|
-
id:
|
|
3523
|
+
id: drizzle_orm_pg_core533.PgColumn<{
|
|
2790
3524
|
name: "id";
|
|
2791
3525
|
tableName: "evaluation_result";
|
|
2792
3526
|
dataType: "string";
|
|
@@ -2835,11 +3569,11 @@ declare const ledgerArtifactsRelations: drizzle_orm103.Relations<"ledger_artifac
|
|
|
2835
3569
|
* One tenant can have multiple installations (e.g., multiple orgs).
|
|
2836
3570
|
* The installation_id is the GitHub-assigned ID, unique across all GitHub.
|
|
2837
3571
|
*/
|
|
2838
|
-
declare const workAppGitHubInstallations:
|
|
3572
|
+
declare const workAppGitHubInstallations: drizzle_orm_pg_core533.PgTableWithColumns<{
|
|
2839
3573
|
name: "work_app_github_installations";
|
|
2840
3574
|
schema: undefined;
|
|
2841
3575
|
columns: {
|
|
2842
|
-
createdAt:
|
|
3576
|
+
createdAt: drizzle_orm_pg_core533.PgColumn<{
|
|
2843
3577
|
name: "created_at";
|
|
2844
3578
|
tableName: "work_app_github_installations";
|
|
2845
3579
|
dataType: "string";
|
|
@@ -2856,7 +3590,7 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core1695.PgTableWithCol
|
|
|
2856
3590
|
identity: undefined;
|
|
2857
3591
|
generated: undefined;
|
|
2858
3592
|
}, {}, {}>;
|
|
2859
|
-
updatedAt:
|
|
3593
|
+
updatedAt: drizzle_orm_pg_core533.PgColumn<{
|
|
2860
3594
|
name: "updated_at";
|
|
2861
3595
|
tableName: "work_app_github_installations";
|
|
2862
3596
|
dataType: "string";
|
|
@@ -2873,7 +3607,7 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core1695.PgTableWithCol
|
|
|
2873
3607
|
identity: undefined;
|
|
2874
3608
|
generated: undefined;
|
|
2875
3609
|
}, {}, {}>;
|
|
2876
|
-
installationId:
|
|
3610
|
+
installationId: drizzle_orm_pg_core533.PgColumn<{
|
|
2877
3611
|
name: "installation_id";
|
|
2878
3612
|
tableName: "work_app_github_installations";
|
|
2879
3613
|
dataType: "string";
|
|
@@ -2890,7 +3624,7 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core1695.PgTableWithCol
|
|
|
2890
3624
|
identity: undefined;
|
|
2891
3625
|
generated: undefined;
|
|
2892
3626
|
}, {}, {}>;
|
|
2893
|
-
accountLogin:
|
|
3627
|
+
accountLogin: drizzle_orm_pg_core533.PgColumn<{
|
|
2894
3628
|
name: "account_login";
|
|
2895
3629
|
tableName: "work_app_github_installations";
|
|
2896
3630
|
dataType: "string";
|
|
@@ -2909,7 +3643,7 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core1695.PgTableWithCol
|
|
|
2909
3643
|
}, {}, {
|
|
2910
3644
|
length: 256;
|
|
2911
3645
|
}>;
|
|
2912
|
-
accountId:
|
|
3646
|
+
accountId: drizzle_orm_pg_core533.PgColumn<{
|
|
2913
3647
|
name: "account_id";
|
|
2914
3648
|
tableName: "work_app_github_installations";
|
|
2915
3649
|
dataType: "string";
|
|
@@ -2926,12 +3660,12 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core1695.PgTableWithCol
|
|
|
2926
3660
|
identity: undefined;
|
|
2927
3661
|
generated: undefined;
|
|
2928
3662
|
}, {}, {}>;
|
|
2929
|
-
accountType:
|
|
3663
|
+
accountType: drizzle_orm_pg_core533.PgColumn<{
|
|
2930
3664
|
name: "account_type";
|
|
2931
3665
|
tableName: "work_app_github_installations";
|
|
2932
3666
|
dataType: "string";
|
|
2933
3667
|
columnType: "PgVarchar";
|
|
2934
|
-
data: "
|
|
3668
|
+
data: "User" | "Organization";
|
|
2935
3669
|
driverParam: string;
|
|
2936
3670
|
notNull: true;
|
|
2937
3671
|
hasDefault: false;
|
|
@@ -2944,9 +3678,9 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core1695.PgTableWithCol
|
|
|
2944
3678
|
generated: undefined;
|
|
2945
3679
|
}, {}, {
|
|
2946
3680
|
length: 20;
|
|
2947
|
-
$type: "
|
|
3681
|
+
$type: "User" | "Organization";
|
|
2948
3682
|
}>;
|
|
2949
|
-
status:
|
|
3683
|
+
status: drizzle_orm_pg_core533.PgColumn<{
|
|
2950
3684
|
name: "status";
|
|
2951
3685
|
tableName: "work_app_github_installations";
|
|
2952
3686
|
dataType: "string";
|
|
@@ -2966,7 +3700,7 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core1695.PgTableWithCol
|
|
|
2966
3700
|
length: 20;
|
|
2967
3701
|
$type: "pending" | "active" | "suspended" | "disconnected";
|
|
2968
3702
|
}>;
|
|
2969
|
-
tenantId:
|
|
3703
|
+
tenantId: drizzle_orm_pg_core533.PgColumn<{
|
|
2970
3704
|
name: "tenant_id";
|
|
2971
3705
|
tableName: "work_app_github_installations";
|
|
2972
3706
|
dataType: "string";
|
|
@@ -2985,7 +3719,7 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core1695.PgTableWithCol
|
|
|
2985
3719
|
}, {}, {
|
|
2986
3720
|
length: 256;
|
|
2987
3721
|
}>;
|
|
2988
|
-
id:
|
|
3722
|
+
id: drizzle_orm_pg_core533.PgColumn<{
|
|
2989
3723
|
name: "id";
|
|
2990
3724
|
tableName: "work_app_github_installations";
|
|
2991
3725
|
dataType: "string";
|
|
@@ -3012,11 +3746,11 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core1695.PgTableWithCol
|
|
|
3012
3746
|
* These are synced from GitHub when the app is installed or updated.
|
|
3013
3747
|
* The repository_id is the GitHub-assigned ID, unique across all GitHub.
|
|
3014
3748
|
*/
|
|
3015
|
-
declare const workAppGitHubRepositories:
|
|
3749
|
+
declare const workAppGitHubRepositories: drizzle_orm_pg_core533.PgTableWithColumns<{
|
|
3016
3750
|
name: "work_app_github_repositories";
|
|
3017
3751
|
schema: undefined;
|
|
3018
3752
|
columns: {
|
|
3019
|
-
createdAt:
|
|
3753
|
+
createdAt: drizzle_orm_pg_core533.PgColumn<{
|
|
3020
3754
|
name: "created_at";
|
|
3021
3755
|
tableName: "work_app_github_repositories";
|
|
3022
3756
|
dataType: "string";
|
|
@@ -3033,7 +3767,7 @@ declare const workAppGitHubRepositories: drizzle_orm_pg_core1695.PgTableWithColu
|
|
|
3033
3767
|
identity: undefined;
|
|
3034
3768
|
generated: undefined;
|
|
3035
3769
|
}, {}, {}>;
|
|
3036
|
-
updatedAt:
|
|
3770
|
+
updatedAt: drizzle_orm_pg_core533.PgColumn<{
|
|
3037
3771
|
name: "updated_at";
|
|
3038
3772
|
tableName: "work_app_github_repositories";
|
|
3039
3773
|
dataType: "string";
|
|
@@ -3050,7 +3784,7 @@ declare const workAppGitHubRepositories: drizzle_orm_pg_core1695.PgTableWithColu
|
|
|
3050
3784
|
identity: undefined;
|
|
3051
3785
|
generated: undefined;
|
|
3052
3786
|
}, {}, {}>;
|
|
3053
|
-
id:
|
|
3787
|
+
id: drizzle_orm_pg_core533.PgColumn<{
|
|
3054
3788
|
name: "id";
|
|
3055
3789
|
tableName: "work_app_github_repositories";
|
|
3056
3790
|
dataType: "string";
|
|
@@ -3069,7 +3803,7 @@ declare const workAppGitHubRepositories: drizzle_orm_pg_core1695.PgTableWithColu
|
|
|
3069
3803
|
}, {}, {
|
|
3070
3804
|
length: 256;
|
|
3071
3805
|
}>;
|
|
3072
|
-
installationDbId:
|
|
3806
|
+
installationDbId: drizzle_orm_pg_core533.PgColumn<{
|
|
3073
3807
|
name: "installation_db_id";
|
|
3074
3808
|
tableName: "work_app_github_repositories";
|
|
3075
3809
|
dataType: "string";
|
|
@@ -3088,7 +3822,7 @@ declare const workAppGitHubRepositories: drizzle_orm_pg_core1695.PgTableWithColu
|
|
|
3088
3822
|
}, {}, {
|
|
3089
3823
|
length: 256;
|
|
3090
3824
|
}>;
|
|
3091
|
-
repositoryId:
|
|
3825
|
+
repositoryId: drizzle_orm_pg_core533.PgColumn<{
|
|
3092
3826
|
name: "repository_id";
|
|
3093
3827
|
tableName: "work_app_github_repositories";
|
|
3094
3828
|
dataType: "string";
|
|
@@ -3105,7 +3839,7 @@ declare const workAppGitHubRepositories: drizzle_orm_pg_core1695.PgTableWithColu
|
|
|
3105
3839
|
identity: undefined;
|
|
3106
3840
|
generated: undefined;
|
|
3107
3841
|
}, {}, {}>;
|
|
3108
|
-
repositoryName:
|
|
3842
|
+
repositoryName: drizzle_orm_pg_core533.PgColumn<{
|
|
3109
3843
|
name: "repository_name";
|
|
3110
3844
|
tableName: "work_app_github_repositories";
|
|
3111
3845
|
dataType: "string";
|
|
@@ -3124,7 +3858,7 @@ declare const workAppGitHubRepositories: drizzle_orm_pg_core1695.PgTableWithColu
|
|
|
3124
3858
|
}, {}, {
|
|
3125
3859
|
length: 256;
|
|
3126
3860
|
}>;
|
|
3127
|
-
repositoryFullName:
|
|
3861
|
+
repositoryFullName: drizzle_orm_pg_core533.PgColumn<{
|
|
3128
3862
|
name: "repository_full_name";
|
|
3129
3863
|
tableName: "work_app_github_repositories";
|
|
3130
3864
|
dataType: "string";
|
|
@@ -3143,7 +3877,7 @@ declare const workAppGitHubRepositories: drizzle_orm_pg_core1695.PgTableWithColu
|
|
|
3143
3877
|
}, {}, {
|
|
3144
3878
|
length: 512;
|
|
3145
3879
|
}>;
|
|
3146
|
-
private:
|
|
3880
|
+
private: drizzle_orm_pg_core533.PgColumn<{
|
|
3147
3881
|
name: "private";
|
|
3148
3882
|
tableName: "work_app_github_repositories";
|
|
3149
3883
|
dataType: "boolean";
|
|
@@ -3171,11 +3905,11 @@ declare const workAppGitHubRepositories: drizzle_orm_pg_core1695.PgTableWithColu
|
|
|
3171
3905
|
* (cross-schema, no FK constraint for project). tenant_id is included because
|
|
3172
3906
|
* project IDs are only unique within a tenant.
|
|
3173
3907
|
*/
|
|
3174
|
-
declare const workAppGitHubProjectRepositoryAccess:
|
|
3908
|
+
declare const workAppGitHubProjectRepositoryAccess: drizzle_orm_pg_core533.PgTableWithColumns<{
|
|
3175
3909
|
name: "work_app_github_project_repository_access";
|
|
3176
3910
|
schema: undefined;
|
|
3177
3911
|
columns: {
|
|
3178
|
-
createdAt:
|
|
3912
|
+
createdAt: drizzle_orm_pg_core533.PgColumn<{
|
|
3179
3913
|
name: "created_at";
|
|
3180
3914
|
tableName: "work_app_github_project_repository_access";
|
|
3181
3915
|
dataType: "string";
|
|
@@ -3192,7 +3926,7 @@ declare const workAppGitHubProjectRepositoryAccess: drizzle_orm_pg_core1695.PgTa
|
|
|
3192
3926
|
identity: undefined;
|
|
3193
3927
|
generated: undefined;
|
|
3194
3928
|
}, {}, {}>;
|
|
3195
|
-
updatedAt:
|
|
3929
|
+
updatedAt: drizzle_orm_pg_core533.PgColumn<{
|
|
3196
3930
|
name: "updated_at";
|
|
3197
3931
|
tableName: "work_app_github_project_repository_access";
|
|
3198
3932
|
dataType: "string";
|
|
@@ -3209,7 +3943,7 @@ declare const workAppGitHubProjectRepositoryAccess: drizzle_orm_pg_core1695.PgTa
|
|
|
3209
3943
|
identity: undefined;
|
|
3210
3944
|
generated: undefined;
|
|
3211
3945
|
}, {}, {}>;
|
|
3212
|
-
repositoryDbId:
|
|
3946
|
+
repositoryDbId: drizzle_orm_pg_core533.PgColumn<{
|
|
3213
3947
|
name: "repository_db_id";
|
|
3214
3948
|
tableName: "work_app_github_project_repository_access";
|
|
3215
3949
|
dataType: "string";
|
|
@@ -3228,7 +3962,7 @@ declare const workAppGitHubProjectRepositoryAccess: drizzle_orm_pg_core1695.PgTa
|
|
|
3228
3962
|
}, {}, {
|
|
3229
3963
|
length: 256;
|
|
3230
3964
|
}>;
|
|
3231
|
-
projectId:
|
|
3965
|
+
projectId: drizzle_orm_pg_core533.PgColumn<{
|
|
3232
3966
|
name: "project_id";
|
|
3233
3967
|
tableName: "work_app_github_project_repository_access";
|
|
3234
3968
|
dataType: "string";
|
|
@@ -3247,7 +3981,7 @@ declare const workAppGitHubProjectRepositoryAccess: drizzle_orm_pg_core1695.PgTa
|
|
|
3247
3981
|
}, {}, {
|
|
3248
3982
|
length: 256;
|
|
3249
3983
|
}>;
|
|
3250
|
-
tenantId:
|
|
3984
|
+
tenantId: drizzle_orm_pg_core533.PgColumn<{
|
|
3251
3985
|
name: "tenant_id";
|
|
3252
3986
|
tableName: "work_app_github_project_repository_access";
|
|
3253
3987
|
dataType: "string";
|
|
@@ -3266,7 +4000,7 @@ declare const workAppGitHubProjectRepositoryAccess: drizzle_orm_pg_core1695.PgTa
|
|
|
3266
4000
|
}, {}, {
|
|
3267
4001
|
length: 256;
|
|
3268
4002
|
}>;
|
|
3269
|
-
id:
|
|
4003
|
+
id: drizzle_orm_pg_core533.PgColumn<{
|
|
3270
4004
|
name: "id";
|
|
3271
4005
|
tableName: "work_app_github_project_repository_access";
|
|
3272
4006
|
dataType: "string";
|
|
@@ -3295,11 +4029,11 @@ declare const workAppGitHubProjectRepositoryAccess: drizzle_orm_pg_core1695.PgTa
|
|
|
3295
4029
|
* (cross-schema, no FK constraint). These are denormalized here so all GitHub access
|
|
3296
4030
|
* info can be queried from PostgreSQL alone.
|
|
3297
4031
|
*/
|
|
3298
|
-
declare const workAppGitHubMcpToolRepositoryAccess:
|
|
4032
|
+
declare const workAppGitHubMcpToolRepositoryAccess: drizzle_orm_pg_core533.PgTableWithColumns<{
|
|
3299
4033
|
name: "work_app_github_mcp_tool_repository_access";
|
|
3300
4034
|
schema: undefined;
|
|
3301
4035
|
columns: {
|
|
3302
|
-
createdAt:
|
|
4036
|
+
createdAt: drizzle_orm_pg_core533.PgColumn<{
|
|
3303
4037
|
name: "created_at";
|
|
3304
4038
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
3305
4039
|
dataType: "string";
|
|
@@ -3316,7 +4050,7 @@ declare const workAppGitHubMcpToolRepositoryAccess: drizzle_orm_pg_core1695.PgTa
|
|
|
3316
4050
|
identity: undefined;
|
|
3317
4051
|
generated: undefined;
|
|
3318
4052
|
}, {}, {}>;
|
|
3319
|
-
updatedAt:
|
|
4053
|
+
updatedAt: drizzle_orm_pg_core533.PgColumn<{
|
|
3320
4054
|
name: "updated_at";
|
|
3321
4055
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
3322
4056
|
dataType: "string";
|
|
@@ -3333,7 +4067,7 @@ declare const workAppGitHubMcpToolRepositoryAccess: drizzle_orm_pg_core1695.PgTa
|
|
|
3333
4067
|
identity: undefined;
|
|
3334
4068
|
generated: undefined;
|
|
3335
4069
|
}, {}, {}>;
|
|
3336
|
-
toolId:
|
|
4070
|
+
toolId: drizzle_orm_pg_core533.PgColumn<{
|
|
3337
4071
|
name: "tool_id";
|
|
3338
4072
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
3339
4073
|
dataType: "string";
|
|
@@ -3352,7 +4086,7 @@ declare const workAppGitHubMcpToolRepositoryAccess: drizzle_orm_pg_core1695.PgTa
|
|
|
3352
4086
|
}, {}, {
|
|
3353
4087
|
length: 256;
|
|
3354
4088
|
}>;
|
|
3355
|
-
repositoryDbId:
|
|
4089
|
+
repositoryDbId: drizzle_orm_pg_core533.PgColumn<{
|
|
3356
4090
|
name: "repository_db_id";
|
|
3357
4091
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
3358
4092
|
dataType: "string";
|
|
@@ -3371,7 +4105,7 @@ declare const workAppGitHubMcpToolRepositoryAccess: drizzle_orm_pg_core1695.PgTa
|
|
|
3371
4105
|
}, {}, {
|
|
3372
4106
|
length: 256;
|
|
3373
4107
|
}>;
|
|
3374
|
-
projectId:
|
|
4108
|
+
projectId: drizzle_orm_pg_core533.PgColumn<{
|
|
3375
4109
|
name: "project_id";
|
|
3376
4110
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
3377
4111
|
dataType: "string";
|
|
@@ -3390,7 +4124,7 @@ declare const workAppGitHubMcpToolRepositoryAccess: drizzle_orm_pg_core1695.PgTa
|
|
|
3390
4124
|
}, {}, {
|
|
3391
4125
|
length: 256;
|
|
3392
4126
|
}>;
|
|
3393
|
-
tenantId:
|
|
4127
|
+
tenantId: drizzle_orm_pg_core533.PgColumn<{
|
|
3394
4128
|
name: "tenant_id";
|
|
3395
4129
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
3396
4130
|
dataType: "string";
|
|
@@ -3409,7 +4143,7 @@ declare const workAppGitHubMcpToolRepositoryAccess: drizzle_orm_pg_core1695.PgTa
|
|
|
3409
4143
|
}, {}, {
|
|
3410
4144
|
length: 256;
|
|
3411
4145
|
}>;
|
|
3412
|
-
id:
|
|
4146
|
+
id: drizzle_orm_pg_core533.PgColumn<{
|
|
3413
4147
|
name: "id";
|
|
3414
4148
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
3415
4149
|
dataType: "string";
|
|
@@ -3437,11 +4171,11 @@ declare const workAppGitHubMcpToolRepositoryAccess: drizzle_orm_pg_core1695.PgTa
|
|
|
3437
4171
|
* - 'selected': Project only has access to repositories listed in work_app_github_project_repository_access
|
|
3438
4172
|
* If no row exists for a project, defaults to 'selected' (fail-safe: no access unless explicitly granted).
|
|
3439
4173
|
*/
|
|
3440
|
-
declare const workAppGitHubProjectAccessMode:
|
|
4174
|
+
declare const workAppGitHubProjectAccessMode: drizzle_orm_pg_core533.PgTableWithColumns<{
|
|
3441
4175
|
name: "work_app_github_project_access_mode";
|
|
3442
4176
|
schema: undefined;
|
|
3443
4177
|
columns: {
|
|
3444
|
-
createdAt:
|
|
4178
|
+
createdAt: drizzle_orm_pg_core533.PgColumn<{
|
|
3445
4179
|
name: "created_at";
|
|
3446
4180
|
tableName: "work_app_github_project_access_mode";
|
|
3447
4181
|
dataType: "string";
|
|
@@ -3458,7 +4192,7 @@ declare const workAppGitHubProjectAccessMode: drizzle_orm_pg_core1695.PgTableWit
|
|
|
3458
4192
|
identity: undefined;
|
|
3459
4193
|
generated: undefined;
|
|
3460
4194
|
}, {}, {}>;
|
|
3461
|
-
updatedAt:
|
|
4195
|
+
updatedAt: drizzle_orm_pg_core533.PgColumn<{
|
|
3462
4196
|
name: "updated_at";
|
|
3463
4197
|
tableName: "work_app_github_project_access_mode";
|
|
3464
4198
|
dataType: "string";
|
|
@@ -3475,7 +4209,7 @@ declare const workAppGitHubProjectAccessMode: drizzle_orm_pg_core1695.PgTableWit
|
|
|
3475
4209
|
identity: undefined;
|
|
3476
4210
|
generated: undefined;
|
|
3477
4211
|
}, {}, {}>;
|
|
3478
|
-
tenantId:
|
|
4212
|
+
tenantId: drizzle_orm_pg_core533.PgColumn<{
|
|
3479
4213
|
name: "tenant_id";
|
|
3480
4214
|
tableName: "work_app_github_project_access_mode";
|
|
3481
4215
|
dataType: "string";
|
|
@@ -3494,7 +4228,7 @@ declare const workAppGitHubProjectAccessMode: drizzle_orm_pg_core1695.PgTableWit
|
|
|
3494
4228
|
}, {}, {
|
|
3495
4229
|
length: 256;
|
|
3496
4230
|
}>;
|
|
3497
|
-
projectId:
|
|
4231
|
+
projectId: drizzle_orm_pg_core533.PgColumn<{
|
|
3498
4232
|
name: "project_id";
|
|
3499
4233
|
tableName: "work_app_github_project_access_mode";
|
|
3500
4234
|
dataType: "string";
|
|
@@ -3513,7 +4247,7 @@ declare const workAppGitHubProjectAccessMode: drizzle_orm_pg_core1695.PgTableWit
|
|
|
3513
4247
|
}, {}, {
|
|
3514
4248
|
length: 256;
|
|
3515
4249
|
}>;
|
|
3516
|
-
mode:
|
|
4250
|
+
mode: drizzle_orm_pg_core533.PgColumn<{
|
|
3517
4251
|
name: "mode";
|
|
3518
4252
|
tableName: "work_app_github_project_access_mode";
|
|
3519
4253
|
dataType: "string";
|
|
@@ -3542,11 +4276,11 @@ declare const workAppGitHubProjectAccessMode: drizzle_orm_pg_core1695.PgTableWit
|
|
|
3542
4276
|
* - 'selected': Tool only has access to repositories listed in work_app_github_mcp_tool_repository_access
|
|
3543
4277
|
* If no row exists for a tool, defaults to 'selected' (fail-safe: no access unless explicitly granted).
|
|
3544
4278
|
*/
|
|
3545
|
-
declare const workAppGitHubMcpToolAccessMode:
|
|
4279
|
+
declare const workAppGitHubMcpToolAccessMode: drizzle_orm_pg_core533.PgTableWithColumns<{
|
|
3546
4280
|
name: "work_app_github_mcp_tool_access_mode";
|
|
3547
4281
|
schema: undefined;
|
|
3548
4282
|
columns: {
|
|
3549
|
-
createdAt:
|
|
4283
|
+
createdAt: drizzle_orm_pg_core533.PgColumn<{
|
|
3550
4284
|
name: "created_at";
|
|
3551
4285
|
tableName: "work_app_github_mcp_tool_access_mode";
|
|
3552
4286
|
dataType: "string";
|
|
@@ -3563,7 +4297,7 @@ declare const workAppGitHubMcpToolAccessMode: drizzle_orm_pg_core1695.PgTableWit
|
|
|
3563
4297
|
identity: undefined;
|
|
3564
4298
|
generated: undefined;
|
|
3565
4299
|
}, {}, {}>;
|
|
3566
|
-
updatedAt:
|
|
4300
|
+
updatedAt: drizzle_orm_pg_core533.PgColumn<{
|
|
3567
4301
|
name: "updated_at";
|
|
3568
4302
|
tableName: "work_app_github_mcp_tool_access_mode";
|
|
3569
4303
|
dataType: "string";
|
|
@@ -3580,7 +4314,7 @@ declare const workAppGitHubMcpToolAccessMode: drizzle_orm_pg_core1695.PgTableWit
|
|
|
3580
4314
|
identity: undefined;
|
|
3581
4315
|
generated: undefined;
|
|
3582
4316
|
}, {}, {}>;
|
|
3583
|
-
toolId:
|
|
4317
|
+
toolId: drizzle_orm_pg_core533.PgColumn<{
|
|
3584
4318
|
name: "tool_id";
|
|
3585
4319
|
tableName: "work_app_github_mcp_tool_access_mode";
|
|
3586
4320
|
dataType: "string";
|
|
@@ -3599,7 +4333,7 @@ declare const workAppGitHubMcpToolAccessMode: drizzle_orm_pg_core1695.PgTableWit
|
|
|
3599
4333
|
}, {}, {
|
|
3600
4334
|
length: 256;
|
|
3601
4335
|
}>;
|
|
3602
|
-
tenantId:
|
|
4336
|
+
tenantId: drizzle_orm_pg_core533.PgColumn<{
|
|
3603
4337
|
name: "tenant_id";
|
|
3604
4338
|
tableName: "work_app_github_mcp_tool_access_mode";
|
|
3605
4339
|
dataType: "string";
|
|
@@ -3618,7 +4352,7 @@ declare const workAppGitHubMcpToolAccessMode: drizzle_orm_pg_core1695.PgTableWit
|
|
|
3618
4352
|
}, {}, {
|
|
3619
4353
|
length: 256;
|
|
3620
4354
|
}>;
|
|
3621
|
-
projectId:
|
|
4355
|
+
projectId: drizzle_orm_pg_core533.PgColumn<{
|
|
3622
4356
|
name: "project_id";
|
|
3623
4357
|
tableName: "work_app_github_mcp_tool_access_mode";
|
|
3624
4358
|
dataType: "string";
|
|
@@ -3637,7 +4371,7 @@ declare const workAppGitHubMcpToolAccessMode: drizzle_orm_pg_core1695.PgTableWit
|
|
|
3637
4371
|
}, {}, {
|
|
3638
4372
|
length: 256;
|
|
3639
4373
|
}>;
|
|
3640
|
-
mode:
|
|
4374
|
+
mode: drizzle_orm_pg_core533.PgColumn<{
|
|
3641
4375
|
name: "mode";
|
|
3642
4376
|
tableName: "work_app_github_mcp_tool_access_mode";
|
|
3643
4377
|
dataType: "string";
|
|
@@ -3675,4 +4409,4 @@ declare const workAppGitHubMcpToolRepositoryAccessRelations: drizzle_orm103.Rela
|
|
|
3675
4409
|
repository: drizzle_orm103.One<"work_app_github_repositories", true>;
|
|
3676
4410
|
}>;
|
|
3677
4411
|
//#endregion
|
|
3678
|
-
export { account, apiKeys, contextCache, conversations, conversationsRelations, datasetRun, datasetRunConversationRelations, deviceCode, evaluationResult, evaluationRun, invitation, ledgerArtifacts, ledgerArtifactsRelations, member, messages, messagesRelations, organization, projectMetadata, runtime_schema_d_exports, session, ssoProvider, taskRelations, taskRelationsRelations, tasks, tasksRelations, triggerInvocations, user, verification, workAppGitHubInstallations, workAppGitHubInstallationsRelations, workAppGitHubMcpToolAccessMode, workAppGitHubMcpToolRepositoryAccess, workAppGitHubMcpToolRepositoryAccessRelations, workAppGitHubProjectAccessMode, workAppGitHubProjectRepositoryAccess, workAppGitHubProjectRepositoryAccessRelations, workAppGitHubRepositories, workAppGitHubRepositoriesRelations };
|
|
4412
|
+
export { account, apiKeys, contextCache, conversations, conversationsRelations, datasetRun, datasetRunConversationRelations, deviceCode, evaluationResult, evaluationRun, invitation, ledgerArtifacts, ledgerArtifactsRelations, member, messages, messagesRelations, organization, projectMetadata, runtime_schema_d_exports, session, ssoProvider, taskRelations, taskRelationsRelations, tasks, tasksRelations, triggerInvocations, user, verification, workAppGitHubInstallations, workAppGitHubInstallationsRelations, workAppGitHubMcpToolAccessMode, workAppGitHubMcpToolRepositoryAccess, workAppGitHubMcpToolRepositoryAccessRelations, workAppGitHubProjectAccessMode, workAppGitHubProjectRepositoryAccess, workAppGitHubProjectRepositoryAccessRelations, workAppGitHubRepositories, workAppGitHubRepositoriesRelations, workAppSlackChannelAgentConfigs, workAppSlackUserMappings, workAppSlackWorkspaces };
|