@inkeep/agents-core 0.64.1 → 0.64.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/auth/auth-schema.d.ts +86 -86
- package/dist/auth/auth-validation-schemas.d.ts +137 -137
- package/dist/auth/auth.d.ts +6 -6
- package/dist/auth/permissions.d.ts +13 -13
- package/dist/data-access/manage/agents.d.ts +41 -41
- package/dist/data-access/manage/artifactComponents.d.ts +10 -10
- package/dist/data-access/manage/contextConfigs.d.ts +8 -8
- package/dist/data-access/manage/dataComponents.d.ts +4 -4
- package/dist/data-access/manage/functionTools.d.ts +12 -12
- package/dist/data-access/manage/skills.d.ts +10 -10
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +24 -24
- package/dist/data-access/manage/subAgentRelations.d.ts +22 -22
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +18 -18
- package/dist/data-access/manage/subAgents.d.ts +15 -15
- package/dist/data-access/manage/tools.d.ts +27 -27
- package/dist/data-access/manage/triggers.d.ts +2 -2
- package/dist/data-access/runtime/apiKeys.d.ts +12 -12
- package/dist/data-access/runtime/apps.d.ts +8 -8
- package/dist/data-access/runtime/conversations.d.ts +24 -24
- package/dist/data-access/runtime/messages.d.ts +9 -9
- package/dist/data-access/runtime/tasks.d.ts +5 -5
- package/dist/db/manage/manage-schema.d.ts +449 -449
- package/dist/db/runtime/runtime-schema.d.ts +374 -374
- package/dist/types/utility.d.ts +1 -0
- package/dist/validation/drizzle-schema-helpers.d.ts +3 -3
- package/dist/validation/schemas/skills.d.ts +15 -15
- package/dist/validation/schemas.d.ts +2017 -2017
- package/package.json +1 -1
|
@@ -2,8 +2,8 @@ import { Part } from "../../types/a2a.js";
|
|
|
2
2
|
import { AppType, ConversationMetadata, MessageContent, MessageMetadata, TaskMetadataConfig } from "../../types/utility.js";
|
|
3
3
|
import { account, deviceCode, invitation, member, organization, session, ssoProvider, user, verification } from "../../auth/auth-schema.js";
|
|
4
4
|
import { USAGE_GENERATION_TYPES } from "../../constants/otel-attributes.js";
|
|
5
|
-
import * as
|
|
6
|
-
import * as
|
|
5
|
+
import * as drizzle_orm20 from "drizzle-orm";
|
|
6
|
+
import * as drizzle_orm_pg_core1458 from "drizzle-orm/pg-core";
|
|
7
7
|
|
|
8
8
|
//#region src/db/runtime/runtime-schema.d.ts
|
|
9
9
|
declare namespace runtime_schema_d_exports {
|
|
@@ -16,11 +16,11 @@ declare namespace runtime_schema_d_exports {
|
|
|
16
16
|
*
|
|
17
17
|
* Named 'project_metadata' to avoid conflict with the manage-schema 'projects' table.
|
|
18
18
|
*/
|
|
19
|
-
declare const projectMetadata:
|
|
19
|
+
declare const projectMetadata: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
20
20
|
name: "project_metadata";
|
|
21
21
|
schema: undefined;
|
|
22
22
|
columns: {
|
|
23
|
-
id:
|
|
23
|
+
id: drizzle_orm_pg_core1458.PgColumn<{
|
|
24
24
|
name: "id";
|
|
25
25
|
tableName: "project_metadata";
|
|
26
26
|
dataType: "string";
|
|
@@ -39,7 +39,7 @@ declare const projectMetadata: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
39
39
|
}, {}, {
|
|
40
40
|
length: 256;
|
|
41
41
|
}>;
|
|
42
|
-
tenantId:
|
|
42
|
+
tenantId: drizzle_orm_pg_core1458.PgColumn<{
|
|
43
43
|
name: "tenant_id";
|
|
44
44
|
tableName: "project_metadata";
|
|
45
45
|
dataType: "string";
|
|
@@ -58,7 +58,7 @@ declare const projectMetadata: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
58
58
|
}, {}, {
|
|
59
59
|
length: 256;
|
|
60
60
|
}>;
|
|
61
|
-
createdAt:
|
|
61
|
+
createdAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
62
62
|
name: "created_at";
|
|
63
63
|
tableName: "project_metadata";
|
|
64
64
|
dataType: "string";
|
|
@@ -75,7 +75,7 @@ declare const projectMetadata: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
75
75
|
identity: undefined;
|
|
76
76
|
generated: undefined;
|
|
77
77
|
}, {}, {}>;
|
|
78
|
-
createdBy:
|
|
78
|
+
createdBy: drizzle_orm_pg_core1458.PgColumn<{
|
|
79
79
|
name: "created_by";
|
|
80
80
|
tableName: "project_metadata";
|
|
81
81
|
dataType: "string";
|
|
@@ -94,7 +94,7 @@ declare const projectMetadata: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
94
94
|
}, {}, {
|
|
95
95
|
length: 256;
|
|
96
96
|
}>;
|
|
97
|
-
mainBranchName:
|
|
97
|
+
mainBranchName: drizzle_orm_pg_core1458.PgColumn<{
|
|
98
98
|
name: "main_branch_name";
|
|
99
99
|
tableName: "project_metadata";
|
|
100
100
|
dataType: "string";
|
|
@@ -116,11 +116,11 @@ declare const projectMetadata: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
116
116
|
};
|
|
117
117
|
dialect: "pg";
|
|
118
118
|
}>;
|
|
119
|
-
declare const conversations:
|
|
119
|
+
declare const conversations: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
120
120
|
name: "conversations";
|
|
121
121
|
schema: undefined;
|
|
122
122
|
columns: {
|
|
123
|
-
createdAt:
|
|
123
|
+
createdAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
124
124
|
name: "created_at";
|
|
125
125
|
tableName: "conversations";
|
|
126
126
|
dataType: "string";
|
|
@@ -137,7 +137,7 @@ declare const conversations: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
137
137
|
identity: undefined;
|
|
138
138
|
generated: undefined;
|
|
139
139
|
}, {}, {}>;
|
|
140
|
-
updatedAt:
|
|
140
|
+
updatedAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
141
141
|
name: "updated_at";
|
|
142
142
|
tableName: "conversations";
|
|
143
143
|
dataType: "string";
|
|
@@ -154,7 +154,7 @@ declare const conversations: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
154
154
|
identity: undefined;
|
|
155
155
|
generated: undefined;
|
|
156
156
|
}, {}, {}>;
|
|
157
|
-
userId:
|
|
157
|
+
userId: drizzle_orm_pg_core1458.PgColumn<{
|
|
158
158
|
name: "user_id";
|
|
159
159
|
tableName: "conversations";
|
|
160
160
|
dataType: "string";
|
|
@@ -173,7 +173,7 @@ declare const conversations: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
173
173
|
}, {}, {
|
|
174
174
|
length: 256;
|
|
175
175
|
}>;
|
|
176
|
-
agentId:
|
|
176
|
+
agentId: drizzle_orm_pg_core1458.PgColumn<{
|
|
177
177
|
name: "agent_id";
|
|
178
178
|
tableName: "conversations";
|
|
179
179
|
dataType: "string";
|
|
@@ -192,7 +192,7 @@ declare const conversations: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
192
192
|
}, {}, {
|
|
193
193
|
length: 256;
|
|
194
194
|
}>;
|
|
195
|
-
activeSubAgentId:
|
|
195
|
+
activeSubAgentId: drizzle_orm_pg_core1458.PgColumn<{
|
|
196
196
|
name: "active_sub_agent_id";
|
|
197
197
|
tableName: "conversations";
|
|
198
198
|
dataType: "string";
|
|
@@ -211,7 +211,7 @@ declare const conversations: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
211
211
|
}, {}, {
|
|
212
212
|
length: 256;
|
|
213
213
|
}>;
|
|
214
|
-
ref:
|
|
214
|
+
ref: drizzle_orm_pg_core1458.PgColumn<{
|
|
215
215
|
name: "ref";
|
|
216
216
|
tableName: "conversations";
|
|
217
217
|
dataType: "json";
|
|
@@ -238,7 +238,7 @@ declare const conversations: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
238
238
|
hash: string;
|
|
239
239
|
};
|
|
240
240
|
}>;
|
|
241
|
-
title:
|
|
241
|
+
title: drizzle_orm_pg_core1458.PgColumn<{
|
|
242
242
|
name: "title";
|
|
243
243
|
tableName: "conversations";
|
|
244
244
|
dataType: "string";
|
|
@@ -255,7 +255,7 @@ declare const conversations: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
255
255
|
identity: undefined;
|
|
256
256
|
generated: undefined;
|
|
257
257
|
}, {}, {}>;
|
|
258
|
-
lastContextResolution:
|
|
258
|
+
lastContextResolution: drizzle_orm_pg_core1458.PgColumn<{
|
|
259
259
|
name: "last_context_resolution";
|
|
260
260
|
tableName: "conversations";
|
|
261
261
|
dataType: "string";
|
|
@@ -272,7 +272,7 @@ declare const conversations: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
272
272
|
identity: undefined;
|
|
273
273
|
generated: undefined;
|
|
274
274
|
}, {}, {}>;
|
|
275
|
-
metadata:
|
|
275
|
+
metadata: drizzle_orm_pg_core1458.PgColumn<{
|
|
276
276
|
name: "metadata";
|
|
277
277
|
tableName: "conversations";
|
|
278
278
|
dataType: "json";
|
|
@@ -291,7 +291,7 @@ declare const conversations: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
291
291
|
}, {}, {
|
|
292
292
|
$type: ConversationMetadata;
|
|
293
293
|
}>;
|
|
294
|
-
projectId:
|
|
294
|
+
projectId: drizzle_orm_pg_core1458.PgColumn<{
|
|
295
295
|
name: "project_id";
|
|
296
296
|
tableName: "conversations";
|
|
297
297
|
dataType: "string";
|
|
@@ -310,7 +310,7 @@ declare const conversations: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
310
310
|
}, {}, {
|
|
311
311
|
length: 256;
|
|
312
312
|
}>;
|
|
313
|
-
tenantId:
|
|
313
|
+
tenantId: drizzle_orm_pg_core1458.PgColumn<{
|
|
314
314
|
name: "tenant_id";
|
|
315
315
|
tableName: "conversations";
|
|
316
316
|
dataType: "string";
|
|
@@ -329,7 +329,7 @@ declare const conversations: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
329
329
|
}, {}, {
|
|
330
330
|
length: 256;
|
|
331
331
|
}>;
|
|
332
|
-
id:
|
|
332
|
+
id: drizzle_orm_pg_core1458.PgColumn<{
|
|
333
333
|
name: "id";
|
|
334
334
|
tableName: "conversations";
|
|
335
335
|
dataType: "string";
|
|
@@ -351,11 +351,11 @@ declare const conversations: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
351
351
|
};
|
|
352
352
|
dialect: "pg";
|
|
353
353
|
}>;
|
|
354
|
-
declare const tasks:
|
|
354
|
+
declare const tasks: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
355
355
|
name: "tasks";
|
|
356
356
|
schema: undefined;
|
|
357
357
|
columns: {
|
|
358
|
-
createdAt:
|
|
358
|
+
createdAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
359
359
|
name: "created_at";
|
|
360
360
|
tableName: "tasks";
|
|
361
361
|
dataType: "string";
|
|
@@ -372,7 +372,7 @@ declare const tasks: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
372
372
|
identity: undefined;
|
|
373
373
|
generated: undefined;
|
|
374
374
|
}, {}, {}>;
|
|
375
|
-
updatedAt:
|
|
375
|
+
updatedAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
376
376
|
name: "updated_at";
|
|
377
377
|
tableName: "tasks";
|
|
378
378
|
dataType: "string";
|
|
@@ -389,7 +389,7 @@ declare const tasks: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
389
389
|
identity: undefined;
|
|
390
390
|
generated: undefined;
|
|
391
391
|
}, {}, {}>;
|
|
392
|
-
contextId:
|
|
392
|
+
contextId: drizzle_orm_pg_core1458.PgColumn<{
|
|
393
393
|
name: "context_id";
|
|
394
394
|
tableName: "tasks";
|
|
395
395
|
dataType: "string";
|
|
@@ -408,7 +408,7 @@ declare const tasks: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
408
408
|
}, {}, {
|
|
409
409
|
length: 256;
|
|
410
410
|
}>;
|
|
411
|
-
ref:
|
|
411
|
+
ref: drizzle_orm_pg_core1458.PgColumn<{
|
|
412
412
|
name: "ref";
|
|
413
413
|
tableName: "tasks";
|
|
414
414
|
dataType: "json";
|
|
@@ -435,7 +435,7 @@ declare const tasks: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
435
435
|
hash: string;
|
|
436
436
|
};
|
|
437
437
|
}>;
|
|
438
|
-
status:
|
|
438
|
+
status: drizzle_orm_pg_core1458.PgColumn<{
|
|
439
439
|
name: "status";
|
|
440
440
|
tableName: "tasks";
|
|
441
441
|
dataType: "string";
|
|
@@ -454,7 +454,7 @@ declare const tasks: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
454
454
|
}, {}, {
|
|
455
455
|
length: 256;
|
|
456
456
|
}>;
|
|
457
|
-
metadata:
|
|
457
|
+
metadata: drizzle_orm_pg_core1458.PgColumn<{
|
|
458
458
|
name: "metadata";
|
|
459
459
|
tableName: "tasks";
|
|
460
460
|
dataType: "json";
|
|
@@ -473,7 +473,7 @@ declare const tasks: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
473
473
|
}, {}, {
|
|
474
474
|
$type: TaskMetadataConfig;
|
|
475
475
|
}>;
|
|
476
|
-
subAgentId:
|
|
476
|
+
subAgentId: drizzle_orm_pg_core1458.PgColumn<{
|
|
477
477
|
name: "sub_agent_id";
|
|
478
478
|
tableName: "tasks";
|
|
479
479
|
dataType: "string";
|
|
@@ -492,7 +492,7 @@ declare const tasks: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
492
492
|
}, {}, {
|
|
493
493
|
length: 256;
|
|
494
494
|
}>;
|
|
495
|
-
agentId:
|
|
495
|
+
agentId: drizzle_orm_pg_core1458.PgColumn<{
|
|
496
496
|
name: "agent_id";
|
|
497
497
|
tableName: "tasks";
|
|
498
498
|
dataType: "string";
|
|
@@ -511,7 +511,7 @@ declare const tasks: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
511
511
|
}, {}, {
|
|
512
512
|
length: 256;
|
|
513
513
|
}>;
|
|
514
|
-
projectId:
|
|
514
|
+
projectId: drizzle_orm_pg_core1458.PgColumn<{
|
|
515
515
|
name: "project_id";
|
|
516
516
|
tableName: "tasks";
|
|
517
517
|
dataType: "string";
|
|
@@ -530,7 +530,7 @@ declare const tasks: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
530
530
|
}, {}, {
|
|
531
531
|
length: 256;
|
|
532
532
|
}>;
|
|
533
|
-
tenantId:
|
|
533
|
+
tenantId: drizzle_orm_pg_core1458.PgColumn<{
|
|
534
534
|
name: "tenant_id";
|
|
535
535
|
tableName: "tasks";
|
|
536
536
|
dataType: "string";
|
|
@@ -549,7 +549,7 @@ declare const tasks: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
549
549
|
}, {}, {
|
|
550
550
|
length: 256;
|
|
551
551
|
}>;
|
|
552
|
-
id:
|
|
552
|
+
id: drizzle_orm_pg_core1458.PgColumn<{
|
|
553
553
|
name: "id";
|
|
554
554
|
tableName: "tasks";
|
|
555
555
|
dataType: "string";
|
|
@@ -571,11 +571,11 @@ declare const tasks: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
571
571
|
};
|
|
572
572
|
dialect: "pg";
|
|
573
573
|
}>;
|
|
574
|
-
declare const workflowExecutions:
|
|
574
|
+
declare const workflowExecutions: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
575
575
|
name: "workflow_executions";
|
|
576
576
|
schema: undefined;
|
|
577
577
|
columns: {
|
|
578
|
-
createdAt:
|
|
578
|
+
createdAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
579
579
|
name: "created_at";
|
|
580
580
|
tableName: "workflow_executions";
|
|
581
581
|
dataType: "string";
|
|
@@ -592,7 +592,7 @@ declare const workflowExecutions: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
592
592
|
identity: undefined;
|
|
593
593
|
generated: undefined;
|
|
594
594
|
}, {}, {}>;
|
|
595
|
-
updatedAt:
|
|
595
|
+
updatedAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
596
596
|
name: "updated_at";
|
|
597
597
|
tableName: "workflow_executions";
|
|
598
598
|
dataType: "string";
|
|
@@ -609,7 +609,7 @@ declare const workflowExecutions: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
609
609
|
identity: undefined;
|
|
610
610
|
generated: undefined;
|
|
611
611
|
}, {}, {}>;
|
|
612
|
-
agentId:
|
|
612
|
+
agentId: drizzle_orm_pg_core1458.PgColumn<{
|
|
613
613
|
name: "agent_id";
|
|
614
614
|
tableName: "workflow_executions";
|
|
615
615
|
dataType: "string";
|
|
@@ -628,7 +628,7 @@ declare const workflowExecutions: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
628
628
|
}, {}, {
|
|
629
629
|
length: 256;
|
|
630
630
|
}>;
|
|
631
|
-
conversationId:
|
|
631
|
+
conversationId: drizzle_orm_pg_core1458.PgColumn<{
|
|
632
632
|
name: "conversation_id";
|
|
633
633
|
tableName: "workflow_executions";
|
|
634
634
|
dataType: "string";
|
|
@@ -647,7 +647,7 @@ declare const workflowExecutions: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
647
647
|
}, {}, {
|
|
648
648
|
length: 256;
|
|
649
649
|
}>;
|
|
650
|
-
requestId:
|
|
650
|
+
requestId: drizzle_orm_pg_core1458.PgColumn<{
|
|
651
651
|
name: "request_id";
|
|
652
652
|
tableName: "workflow_executions";
|
|
653
653
|
dataType: "string";
|
|
@@ -666,7 +666,7 @@ declare const workflowExecutions: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
666
666
|
}, {}, {
|
|
667
667
|
length: 256;
|
|
668
668
|
}>;
|
|
669
|
-
status:
|
|
669
|
+
status: drizzle_orm_pg_core1458.PgColumn<{
|
|
670
670
|
name: "status";
|
|
671
671
|
tableName: "workflow_executions";
|
|
672
672
|
dataType: "string";
|
|
@@ -685,7 +685,7 @@ declare const workflowExecutions: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
685
685
|
}, {}, {
|
|
686
686
|
length: 50;
|
|
687
687
|
}>;
|
|
688
|
-
metadata:
|
|
688
|
+
metadata: drizzle_orm_pg_core1458.PgColumn<{
|
|
689
689
|
name: "metadata";
|
|
690
690
|
tableName: "workflow_executions";
|
|
691
691
|
dataType: "json";
|
|
@@ -704,7 +704,7 @@ declare const workflowExecutions: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
704
704
|
}, {}, {
|
|
705
705
|
$type: Record<string, unknown>;
|
|
706
706
|
}>;
|
|
707
|
-
projectId:
|
|
707
|
+
projectId: drizzle_orm_pg_core1458.PgColumn<{
|
|
708
708
|
name: "project_id";
|
|
709
709
|
tableName: "workflow_executions";
|
|
710
710
|
dataType: "string";
|
|
@@ -723,7 +723,7 @@ declare const workflowExecutions: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
723
723
|
}, {}, {
|
|
724
724
|
length: 256;
|
|
725
725
|
}>;
|
|
726
|
-
tenantId:
|
|
726
|
+
tenantId: drizzle_orm_pg_core1458.PgColumn<{
|
|
727
727
|
name: "tenant_id";
|
|
728
728
|
tableName: "workflow_executions";
|
|
729
729
|
dataType: "string";
|
|
@@ -742,7 +742,7 @@ declare const workflowExecutions: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
742
742
|
}, {}, {
|
|
743
743
|
length: 256;
|
|
744
744
|
}>;
|
|
745
|
-
id:
|
|
745
|
+
id: drizzle_orm_pg_core1458.PgColumn<{
|
|
746
746
|
name: "id";
|
|
747
747
|
tableName: "workflow_executions";
|
|
748
748
|
dataType: "string";
|
|
@@ -764,11 +764,11 @@ declare const workflowExecutions: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
764
764
|
};
|
|
765
765
|
dialect: "pg";
|
|
766
766
|
}>;
|
|
767
|
-
declare const apiKeys:
|
|
767
|
+
declare const apiKeys: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
768
768
|
name: "api_keys";
|
|
769
769
|
schema: undefined;
|
|
770
770
|
columns: {
|
|
771
|
-
createdAt:
|
|
771
|
+
createdAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
772
772
|
name: "created_at";
|
|
773
773
|
tableName: "api_keys";
|
|
774
774
|
dataType: "string";
|
|
@@ -785,7 +785,7 @@ declare const apiKeys: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
785
785
|
identity: undefined;
|
|
786
786
|
generated: undefined;
|
|
787
787
|
}, {}, {}>;
|
|
788
|
-
updatedAt:
|
|
788
|
+
updatedAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
789
789
|
name: "updated_at";
|
|
790
790
|
tableName: "api_keys";
|
|
791
791
|
dataType: "string";
|
|
@@ -802,7 +802,7 @@ declare const apiKeys: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
802
802
|
identity: undefined;
|
|
803
803
|
generated: undefined;
|
|
804
804
|
}, {}, {}>;
|
|
805
|
-
agentId:
|
|
805
|
+
agentId: drizzle_orm_pg_core1458.PgColumn<{
|
|
806
806
|
name: "agent_id";
|
|
807
807
|
tableName: "api_keys";
|
|
808
808
|
dataType: "string";
|
|
@@ -821,7 +821,7 @@ declare const apiKeys: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
821
821
|
}, {}, {
|
|
822
822
|
length: 256;
|
|
823
823
|
}>;
|
|
824
|
-
publicId:
|
|
824
|
+
publicId: drizzle_orm_pg_core1458.PgColumn<{
|
|
825
825
|
name: "public_id";
|
|
826
826
|
tableName: "api_keys";
|
|
827
827
|
dataType: "string";
|
|
@@ -840,7 +840,7 @@ declare const apiKeys: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
840
840
|
}, {}, {
|
|
841
841
|
length: 256;
|
|
842
842
|
}>;
|
|
843
|
-
keyHash:
|
|
843
|
+
keyHash: drizzle_orm_pg_core1458.PgColumn<{
|
|
844
844
|
name: "key_hash";
|
|
845
845
|
tableName: "api_keys";
|
|
846
846
|
dataType: "string";
|
|
@@ -859,7 +859,7 @@ declare const apiKeys: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
859
859
|
}, {}, {
|
|
860
860
|
length: 256;
|
|
861
861
|
}>;
|
|
862
|
-
keyPrefix:
|
|
862
|
+
keyPrefix: drizzle_orm_pg_core1458.PgColumn<{
|
|
863
863
|
name: "key_prefix";
|
|
864
864
|
tableName: "api_keys";
|
|
865
865
|
dataType: "string";
|
|
@@ -878,7 +878,7 @@ declare const apiKeys: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
878
878
|
}, {}, {
|
|
879
879
|
length: 256;
|
|
880
880
|
}>;
|
|
881
|
-
name:
|
|
881
|
+
name: drizzle_orm_pg_core1458.PgColumn<{
|
|
882
882
|
name: "name";
|
|
883
883
|
tableName: "api_keys";
|
|
884
884
|
dataType: "string";
|
|
@@ -897,7 +897,7 @@ declare const apiKeys: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
897
897
|
}, {}, {
|
|
898
898
|
length: 256;
|
|
899
899
|
}>;
|
|
900
|
-
lastUsedAt:
|
|
900
|
+
lastUsedAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
901
901
|
name: "last_used_at";
|
|
902
902
|
tableName: "api_keys";
|
|
903
903
|
dataType: "string";
|
|
@@ -914,7 +914,7 @@ declare const apiKeys: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
914
914
|
identity: undefined;
|
|
915
915
|
generated: undefined;
|
|
916
916
|
}, {}, {}>;
|
|
917
|
-
expiresAt:
|
|
917
|
+
expiresAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
918
918
|
name: "expires_at";
|
|
919
919
|
tableName: "api_keys";
|
|
920
920
|
dataType: "string";
|
|
@@ -931,7 +931,7 @@ declare const apiKeys: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
931
931
|
identity: undefined;
|
|
932
932
|
generated: undefined;
|
|
933
933
|
}, {}, {}>;
|
|
934
|
-
projectId:
|
|
934
|
+
projectId: drizzle_orm_pg_core1458.PgColumn<{
|
|
935
935
|
name: "project_id";
|
|
936
936
|
tableName: "api_keys";
|
|
937
937
|
dataType: "string";
|
|
@@ -950,7 +950,7 @@ declare const apiKeys: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
950
950
|
}, {}, {
|
|
951
951
|
length: 256;
|
|
952
952
|
}>;
|
|
953
|
-
tenantId:
|
|
953
|
+
tenantId: drizzle_orm_pg_core1458.PgColumn<{
|
|
954
954
|
name: "tenant_id";
|
|
955
955
|
tableName: "api_keys";
|
|
956
956
|
dataType: "string";
|
|
@@ -969,7 +969,7 @@ declare const apiKeys: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
969
969
|
}, {}, {
|
|
970
970
|
length: 256;
|
|
971
971
|
}>;
|
|
972
|
-
id:
|
|
972
|
+
id: drizzle_orm_pg_core1458.PgColumn<{
|
|
973
973
|
name: "id";
|
|
974
974
|
tableName: "api_keys";
|
|
975
975
|
dataType: "string";
|
|
@@ -991,11 +991,11 @@ declare const apiKeys: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
991
991
|
};
|
|
992
992
|
dialect: "pg";
|
|
993
993
|
}>;
|
|
994
|
-
declare const apps:
|
|
994
|
+
declare const apps: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
995
995
|
name: "apps";
|
|
996
996
|
schema: undefined;
|
|
997
997
|
columns: {
|
|
998
|
-
createdAt:
|
|
998
|
+
createdAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
999
999
|
name: "created_at";
|
|
1000
1000
|
tableName: "apps";
|
|
1001
1001
|
dataType: "string";
|
|
@@ -1012,7 +1012,7 @@ declare const apps: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
1012
1012
|
identity: undefined;
|
|
1013
1013
|
generated: undefined;
|
|
1014
1014
|
}, {}, {}>;
|
|
1015
|
-
updatedAt:
|
|
1015
|
+
updatedAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
1016
1016
|
name: "updated_at";
|
|
1017
1017
|
tableName: "apps";
|
|
1018
1018
|
dataType: "string";
|
|
@@ -1029,7 +1029,7 @@ declare const apps: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
1029
1029
|
identity: undefined;
|
|
1030
1030
|
generated: undefined;
|
|
1031
1031
|
}, {}, {}>;
|
|
1032
|
-
id:
|
|
1032
|
+
id: drizzle_orm_pg_core1458.PgColumn<{
|
|
1033
1033
|
name: "id";
|
|
1034
1034
|
tableName: "apps";
|
|
1035
1035
|
dataType: "string";
|
|
@@ -1048,7 +1048,7 @@ declare const apps: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
1048
1048
|
}, {}, {
|
|
1049
1049
|
length: 256;
|
|
1050
1050
|
}>;
|
|
1051
|
-
tenantId:
|
|
1051
|
+
tenantId: drizzle_orm_pg_core1458.PgColumn<{
|
|
1052
1052
|
name: "tenant_id";
|
|
1053
1053
|
tableName: "apps";
|
|
1054
1054
|
dataType: "string";
|
|
@@ -1067,7 +1067,7 @@ declare const apps: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
1067
1067
|
}, {}, {
|
|
1068
1068
|
length: 256;
|
|
1069
1069
|
}>;
|
|
1070
|
-
projectId:
|
|
1070
|
+
projectId: drizzle_orm_pg_core1458.PgColumn<{
|
|
1071
1071
|
name: "project_id";
|
|
1072
1072
|
tableName: "apps";
|
|
1073
1073
|
dataType: "string";
|
|
@@ -1086,7 +1086,7 @@ declare const apps: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
1086
1086
|
}, {}, {
|
|
1087
1087
|
length: 256;
|
|
1088
1088
|
}>;
|
|
1089
|
-
name:
|
|
1089
|
+
name: drizzle_orm_pg_core1458.PgColumn<{
|
|
1090
1090
|
name: "name";
|
|
1091
1091
|
tableName: "apps";
|
|
1092
1092
|
dataType: "string";
|
|
@@ -1105,7 +1105,7 @@ declare const apps: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
1105
1105
|
}, {}, {
|
|
1106
1106
|
length: 256;
|
|
1107
1107
|
}>;
|
|
1108
|
-
description:
|
|
1108
|
+
description: drizzle_orm_pg_core1458.PgColumn<{
|
|
1109
1109
|
name: "description";
|
|
1110
1110
|
tableName: "apps";
|
|
1111
1111
|
dataType: "string";
|
|
@@ -1122,7 +1122,7 @@ declare const apps: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
1122
1122
|
identity: undefined;
|
|
1123
1123
|
generated: undefined;
|
|
1124
1124
|
}, {}, {}>;
|
|
1125
|
-
type:
|
|
1125
|
+
type: drizzle_orm_pg_core1458.PgColumn<{
|
|
1126
1126
|
name: "type";
|
|
1127
1127
|
tableName: "apps";
|
|
1128
1128
|
dataType: "string";
|
|
@@ -1142,7 +1142,7 @@ declare const apps: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
1142
1142
|
length: 64;
|
|
1143
1143
|
$type: AppType;
|
|
1144
1144
|
}>;
|
|
1145
|
-
defaultProjectId:
|
|
1145
|
+
defaultProjectId: drizzle_orm_pg_core1458.PgColumn<{
|
|
1146
1146
|
name: "default_project_id";
|
|
1147
1147
|
tableName: "apps";
|
|
1148
1148
|
dataType: "string";
|
|
@@ -1161,7 +1161,7 @@ declare const apps: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
1161
1161
|
}, {}, {
|
|
1162
1162
|
length: 256;
|
|
1163
1163
|
}>;
|
|
1164
|
-
defaultAgentId:
|
|
1164
|
+
defaultAgentId: drizzle_orm_pg_core1458.PgColumn<{
|
|
1165
1165
|
name: "default_agent_id";
|
|
1166
1166
|
tableName: "apps";
|
|
1167
1167
|
dataType: "string";
|
|
@@ -1180,7 +1180,7 @@ declare const apps: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
1180
1180
|
}, {}, {
|
|
1181
1181
|
length: 256;
|
|
1182
1182
|
}>;
|
|
1183
|
-
prompt:
|
|
1183
|
+
prompt: drizzle_orm_pg_core1458.PgColumn<{
|
|
1184
1184
|
name: "prompt";
|
|
1185
1185
|
tableName: "apps";
|
|
1186
1186
|
dataType: "string";
|
|
@@ -1197,7 +1197,7 @@ declare const apps: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
1197
1197
|
identity: undefined;
|
|
1198
1198
|
generated: undefined;
|
|
1199
1199
|
}, {}, {}>;
|
|
1200
|
-
enabled:
|
|
1200
|
+
enabled: drizzle_orm_pg_core1458.PgColumn<{
|
|
1201
1201
|
name: "enabled";
|
|
1202
1202
|
tableName: "apps";
|
|
1203
1203
|
dataType: "boolean";
|
|
@@ -1214,7 +1214,7 @@ declare const apps: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
1214
1214
|
identity: undefined;
|
|
1215
1215
|
generated: undefined;
|
|
1216
1216
|
}, {}, {}>;
|
|
1217
|
-
config:
|
|
1217
|
+
config: drizzle_orm_pg_core1458.PgColumn<{
|
|
1218
1218
|
name: "config";
|
|
1219
1219
|
tableName: "apps";
|
|
1220
1220
|
dataType: "json";
|
|
@@ -1265,7 +1265,7 @@ declare const apps: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
1265
1265
|
api: Record<string, never>;
|
|
1266
1266
|
};
|
|
1267
1267
|
}>;
|
|
1268
|
-
lastUsedAt:
|
|
1268
|
+
lastUsedAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
1269
1269
|
name: "last_used_at";
|
|
1270
1270
|
tableName: "apps";
|
|
1271
1271
|
dataType: "string";
|
|
@@ -1292,11 +1292,11 @@ declare const apps: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
1292
1292
|
* Application code must enforce referential integrity for triggerId.
|
|
1293
1293
|
* Can optionally link to conversations when the trigger creates one.
|
|
1294
1294
|
*/
|
|
1295
|
-
declare const triggerInvocations:
|
|
1295
|
+
declare const triggerInvocations: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
1296
1296
|
name: "trigger_invocations";
|
|
1297
1297
|
schema: undefined;
|
|
1298
1298
|
columns: {
|
|
1299
|
-
triggerId:
|
|
1299
|
+
triggerId: drizzle_orm_pg_core1458.PgColumn<{
|
|
1300
1300
|
name: "trigger_id";
|
|
1301
1301
|
tableName: "trigger_invocations";
|
|
1302
1302
|
dataType: "string";
|
|
@@ -1315,7 +1315,7 @@ declare const triggerInvocations: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
1315
1315
|
}, {}, {
|
|
1316
1316
|
length: 256;
|
|
1317
1317
|
}>;
|
|
1318
|
-
conversationId:
|
|
1318
|
+
conversationId: drizzle_orm_pg_core1458.PgColumn<{
|
|
1319
1319
|
name: "conversation_id";
|
|
1320
1320
|
tableName: "trigger_invocations";
|
|
1321
1321
|
dataType: "string";
|
|
@@ -1334,7 +1334,7 @@ declare const triggerInvocations: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
1334
1334
|
}, {}, {
|
|
1335
1335
|
length: 256;
|
|
1336
1336
|
}>;
|
|
1337
|
-
ref:
|
|
1337
|
+
ref: drizzle_orm_pg_core1458.PgColumn<{
|
|
1338
1338
|
name: "ref";
|
|
1339
1339
|
tableName: "trigger_invocations";
|
|
1340
1340
|
dataType: "json";
|
|
@@ -1361,7 +1361,7 @@ declare const triggerInvocations: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
1361
1361
|
hash: string;
|
|
1362
1362
|
};
|
|
1363
1363
|
}>;
|
|
1364
|
-
status:
|
|
1364
|
+
status: drizzle_orm_pg_core1458.PgColumn<{
|
|
1365
1365
|
name: "status";
|
|
1366
1366
|
tableName: "trigger_invocations";
|
|
1367
1367
|
dataType: "string";
|
|
@@ -1380,7 +1380,7 @@ declare const triggerInvocations: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
1380
1380
|
}, {}, {
|
|
1381
1381
|
length: 20;
|
|
1382
1382
|
}>;
|
|
1383
|
-
requestPayload:
|
|
1383
|
+
requestPayload: drizzle_orm_pg_core1458.PgColumn<{
|
|
1384
1384
|
name: "request_payload";
|
|
1385
1385
|
tableName: "trigger_invocations";
|
|
1386
1386
|
dataType: "json";
|
|
@@ -1397,7 +1397,7 @@ declare const triggerInvocations: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
1397
1397
|
identity: undefined;
|
|
1398
1398
|
generated: undefined;
|
|
1399
1399
|
}, {}, {}>;
|
|
1400
|
-
transformedPayload:
|
|
1400
|
+
transformedPayload: drizzle_orm_pg_core1458.PgColumn<{
|
|
1401
1401
|
name: "transformed_payload";
|
|
1402
1402
|
tableName: "trigger_invocations";
|
|
1403
1403
|
dataType: "json";
|
|
@@ -1414,7 +1414,7 @@ declare const triggerInvocations: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
1414
1414
|
identity: undefined;
|
|
1415
1415
|
generated: undefined;
|
|
1416
1416
|
}, {}, {}>;
|
|
1417
|
-
errorMessage:
|
|
1417
|
+
errorMessage: drizzle_orm_pg_core1458.PgColumn<{
|
|
1418
1418
|
name: "error_message";
|
|
1419
1419
|
tableName: "trigger_invocations";
|
|
1420
1420
|
dataType: "string";
|
|
@@ -1431,7 +1431,7 @@ declare const triggerInvocations: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
1431
1431
|
identity: undefined;
|
|
1432
1432
|
generated: undefined;
|
|
1433
1433
|
}, {}, {}>;
|
|
1434
|
-
createdAt:
|
|
1434
|
+
createdAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
1435
1435
|
name: "created_at";
|
|
1436
1436
|
tableName: "trigger_invocations";
|
|
1437
1437
|
dataType: "string";
|
|
@@ -1448,7 +1448,7 @@ declare const triggerInvocations: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
1448
1448
|
identity: undefined;
|
|
1449
1449
|
generated: undefined;
|
|
1450
1450
|
}, {}, {}>;
|
|
1451
|
-
agentId:
|
|
1451
|
+
agentId: drizzle_orm_pg_core1458.PgColumn<{
|
|
1452
1452
|
name: "agent_id";
|
|
1453
1453
|
tableName: "trigger_invocations";
|
|
1454
1454
|
dataType: "string";
|
|
@@ -1467,7 +1467,7 @@ declare const triggerInvocations: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
1467
1467
|
}, {}, {
|
|
1468
1468
|
length: 256;
|
|
1469
1469
|
}>;
|
|
1470
|
-
projectId:
|
|
1470
|
+
projectId: drizzle_orm_pg_core1458.PgColumn<{
|
|
1471
1471
|
name: "project_id";
|
|
1472
1472
|
tableName: "trigger_invocations";
|
|
1473
1473
|
dataType: "string";
|
|
@@ -1486,7 +1486,7 @@ declare const triggerInvocations: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
1486
1486
|
}, {}, {
|
|
1487
1487
|
length: 256;
|
|
1488
1488
|
}>;
|
|
1489
|
-
tenantId:
|
|
1489
|
+
tenantId: drizzle_orm_pg_core1458.PgColumn<{
|
|
1490
1490
|
name: "tenant_id";
|
|
1491
1491
|
tableName: "trigger_invocations";
|
|
1492
1492
|
dataType: "string";
|
|
@@ -1505,7 +1505,7 @@ declare const triggerInvocations: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
1505
1505
|
}, {}, {
|
|
1506
1506
|
length: 256;
|
|
1507
1507
|
}>;
|
|
1508
|
-
id:
|
|
1508
|
+
id: drizzle_orm_pg_core1458.PgColumn<{
|
|
1509
1509
|
name: "id";
|
|
1510
1510
|
tableName: "trigger_invocations";
|
|
1511
1511
|
dataType: "string";
|
|
@@ -1532,11 +1532,11 @@ declare const triggerInvocations: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
1532
1532
|
* Enforces workspace -> tenant uniqueness and provides audit trail.
|
|
1533
1533
|
* Stores reference to Nango connection for token retrieval.
|
|
1534
1534
|
*/
|
|
1535
|
-
declare const workAppSlackWorkspaces:
|
|
1535
|
+
declare const workAppSlackWorkspaces: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
1536
1536
|
name: "work_app_slack_workspaces";
|
|
1537
1537
|
schema: undefined;
|
|
1538
1538
|
columns: {
|
|
1539
|
-
createdAt:
|
|
1539
|
+
createdAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
1540
1540
|
name: "created_at";
|
|
1541
1541
|
tableName: "work_app_slack_workspaces";
|
|
1542
1542
|
dataType: "string";
|
|
@@ -1553,7 +1553,7 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core569.PgTableWithColumns<
|
|
|
1553
1553
|
identity: undefined;
|
|
1554
1554
|
generated: undefined;
|
|
1555
1555
|
}, {}, {}>;
|
|
1556
|
-
updatedAt:
|
|
1556
|
+
updatedAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
1557
1557
|
name: "updated_at";
|
|
1558
1558
|
tableName: "work_app_slack_workspaces";
|
|
1559
1559
|
dataType: "string";
|
|
@@ -1570,7 +1570,7 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core569.PgTableWithColumns<
|
|
|
1570
1570
|
identity: undefined;
|
|
1571
1571
|
generated: undefined;
|
|
1572
1572
|
}, {}, {}>;
|
|
1573
|
-
id:
|
|
1573
|
+
id: drizzle_orm_pg_core1458.PgColumn<{
|
|
1574
1574
|
name: "id";
|
|
1575
1575
|
tableName: "work_app_slack_workspaces";
|
|
1576
1576
|
dataType: "string";
|
|
@@ -1589,7 +1589,7 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core569.PgTableWithColumns<
|
|
|
1589
1589
|
}, {}, {
|
|
1590
1590
|
length: 256;
|
|
1591
1591
|
}>;
|
|
1592
|
-
tenantId:
|
|
1592
|
+
tenantId: drizzle_orm_pg_core1458.PgColumn<{
|
|
1593
1593
|
name: "tenant_id";
|
|
1594
1594
|
tableName: "work_app_slack_workspaces";
|
|
1595
1595
|
dataType: "string";
|
|
@@ -1608,7 +1608,7 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core569.PgTableWithColumns<
|
|
|
1608
1608
|
}, {}, {
|
|
1609
1609
|
length: 256;
|
|
1610
1610
|
}>;
|
|
1611
|
-
slackTeamId:
|
|
1611
|
+
slackTeamId: drizzle_orm_pg_core1458.PgColumn<{
|
|
1612
1612
|
name: "slack_team_id";
|
|
1613
1613
|
tableName: "work_app_slack_workspaces";
|
|
1614
1614
|
dataType: "string";
|
|
@@ -1627,7 +1627,7 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core569.PgTableWithColumns<
|
|
|
1627
1627
|
}, {}, {
|
|
1628
1628
|
length: 256;
|
|
1629
1629
|
}>;
|
|
1630
|
-
slackEnterpriseId:
|
|
1630
|
+
slackEnterpriseId: drizzle_orm_pg_core1458.PgColumn<{
|
|
1631
1631
|
name: "slack_enterprise_id";
|
|
1632
1632
|
tableName: "work_app_slack_workspaces";
|
|
1633
1633
|
dataType: "string";
|
|
@@ -1646,7 +1646,7 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core569.PgTableWithColumns<
|
|
|
1646
1646
|
}, {}, {
|
|
1647
1647
|
length: 256;
|
|
1648
1648
|
}>;
|
|
1649
|
-
slackAppId:
|
|
1649
|
+
slackAppId: drizzle_orm_pg_core1458.PgColumn<{
|
|
1650
1650
|
name: "slack_app_id";
|
|
1651
1651
|
tableName: "work_app_slack_workspaces";
|
|
1652
1652
|
dataType: "string";
|
|
@@ -1665,7 +1665,7 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core569.PgTableWithColumns<
|
|
|
1665
1665
|
}, {}, {
|
|
1666
1666
|
length: 256;
|
|
1667
1667
|
}>;
|
|
1668
|
-
slackTeamName:
|
|
1668
|
+
slackTeamName: drizzle_orm_pg_core1458.PgColumn<{
|
|
1669
1669
|
name: "slack_team_name";
|
|
1670
1670
|
tableName: "work_app_slack_workspaces";
|
|
1671
1671
|
dataType: "string";
|
|
@@ -1684,7 +1684,7 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core569.PgTableWithColumns<
|
|
|
1684
1684
|
}, {}, {
|
|
1685
1685
|
length: 512;
|
|
1686
1686
|
}>;
|
|
1687
|
-
nangoProviderConfigKey:
|
|
1687
|
+
nangoProviderConfigKey: drizzle_orm_pg_core1458.PgColumn<{
|
|
1688
1688
|
name: "nango_provider_config_key";
|
|
1689
1689
|
tableName: "work_app_slack_workspaces";
|
|
1690
1690
|
dataType: "string";
|
|
@@ -1703,7 +1703,7 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core569.PgTableWithColumns<
|
|
|
1703
1703
|
}, {}, {
|
|
1704
1704
|
length: 256;
|
|
1705
1705
|
}>;
|
|
1706
|
-
nangoConnectionId:
|
|
1706
|
+
nangoConnectionId: drizzle_orm_pg_core1458.PgColumn<{
|
|
1707
1707
|
name: "nango_connection_id";
|
|
1708
1708
|
tableName: "work_app_slack_workspaces";
|
|
1709
1709
|
dataType: "string";
|
|
@@ -1722,7 +1722,7 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core569.PgTableWithColumns<
|
|
|
1722
1722
|
}, {}, {
|
|
1723
1723
|
length: 256;
|
|
1724
1724
|
}>;
|
|
1725
|
-
status:
|
|
1725
|
+
status: drizzle_orm_pg_core1458.PgColumn<{
|
|
1726
1726
|
name: "status";
|
|
1727
1727
|
tableName: "work_app_slack_workspaces";
|
|
1728
1728
|
dataType: "string";
|
|
@@ -1741,7 +1741,7 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core569.PgTableWithColumns<
|
|
|
1741
1741
|
}, {}, {
|
|
1742
1742
|
length: 20;
|
|
1743
1743
|
}>;
|
|
1744
|
-
installedByUserId:
|
|
1744
|
+
installedByUserId: drizzle_orm_pg_core1458.PgColumn<{
|
|
1745
1745
|
name: "installed_by_user_id";
|
|
1746
1746
|
tableName: "work_app_slack_workspaces";
|
|
1747
1747
|
dataType: "string";
|
|
@@ -1758,7 +1758,7 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core569.PgTableWithColumns<
|
|
|
1758
1758
|
identity: undefined;
|
|
1759
1759
|
generated: undefined;
|
|
1760
1760
|
}, {}, {}>;
|
|
1761
|
-
shouldAllowJoinFromWorkspace:
|
|
1761
|
+
shouldAllowJoinFromWorkspace: drizzle_orm_pg_core1458.PgColumn<{
|
|
1762
1762
|
name: "should_allow_join_from_workspace";
|
|
1763
1763
|
tableName: "work_app_slack_workspaces";
|
|
1764
1764
|
dataType: "boolean";
|
|
@@ -1775,7 +1775,7 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core569.PgTableWithColumns<
|
|
|
1775
1775
|
identity: undefined;
|
|
1776
1776
|
generated: undefined;
|
|
1777
1777
|
}, {}, {}>;
|
|
1778
|
-
defaultAgentId:
|
|
1778
|
+
defaultAgentId: drizzle_orm_pg_core1458.PgColumn<{
|
|
1779
1779
|
name: "default_agent_id";
|
|
1780
1780
|
tableName: "work_app_slack_workspaces";
|
|
1781
1781
|
dataType: "string";
|
|
@@ -1794,7 +1794,7 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core569.PgTableWithColumns<
|
|
|
1794
1794
|
}, {}, {
|
|
1795
1795
|
length: 256;
|
|
1796
1796
|
}>;
|
|
1797
|
-
defaultProjectId:
|
|
1797
|
+
defaultProjectId: drizzle_orm_pg_core1458.PgColumn<{
|
|
1798
1798
|
name: "default_project_id";
|
|
1799
1799
|
tableName: "work_app_slack_workspaces";
|
|
1800
1800
|
dataType: "string";
|
|
@@ -1813,7 +1813,7 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core569.PgTableWithColumns<
|
|
|
1813
1813
|
}, {}, {
|
|
1814
1814
|
length: 256;
|
|
1815
1815
|
}>;
|
|
1816
|
-
defaultGrantAccessToMembers:
|
|
1816
|
+
defaultGrantAccessToMembers: drizzle_orm_pg_core1458.PgColumn<{
|
|
1817
1817
|
name: "default_grant_access_to_members";
|
|
1818
1818
|
tableName: "work_app_slack_workspaces";
|
|
1819
1819
|
dataType: "boolean";
|
|
@@ -1838,11 +1838,11 @@ declare const workAppSlackWorkspaces: drizzle_orm_pg_core569.PgTableWithColumns<
|
|
|
1838
1838
|
* Enables Slack users to trigger agents after linking their accounts.
|
|
1839
1839
|
* Unique per tenant + clientId + slackTeamId + slackUserId.
|
|
1840
1840
|
*/
|
|
1841
|
-
declare const workAppSlackUserMappings:
|
|
1841
|
+
declare const workAppSlackUserMappings: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
1842
1842
|
name: "work_app_slack_user_mappings";
|
|
1843
1843
|
schema: undefined;
|
|
1844
1844
|
columns: {
|
|
1845
|
-
createdAt:
|
|
1845
|
+
createdAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
1846
1846
|
name: "created_at";
|
|
1847
1847
|
tableName: "work_app_slack_user_mappings";
|
|
1848
1848
|
dataType: "string";
|
|
@@ -1859,7 +1859,7 @@ declare const workAppSlackUserMappings: drizzle_orm_pg_core569.PgTableWithColumn
|
|
|
1859
1859
|
identity: undefined;
|
|
1860
1860
|
generated: undefined;
|
|
1861
1861
|
}, {}, {}>;
|
|
1862
|
-
updatedAt:
|
|
1862
|
+
updatedAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
1863
1863
|
name: "updated_at";
|
|
1864
1864
|
tableName: "work_app_slack_user_mappings";
|
|
1865
1865
|
dataType: "string";
|
|
@@ -1876,7 +1876,7 @@ declare const workAppSlackUserMappings: drizzle_orm_pg_core569.PgTableWithColumn
|
|
|
1876
1876
|
identity: undefined;
|
|
1877
1877
|
generated: undefined;
|
|
1878
1878
|
}, {}, {}>;
|
|
1879
|
-
id:
|
|
1879
|
+
id: drizzle_orm_pg_core1458.PgColumn<{
|
|
1880
1880
|
name: "id";
|
|
1881
1881
|
tableName: "work_app_slack_user_mappings";
|
|
1882
1882
|
dataType: "string";
|
|
@@ -1895,7 +1895,7 @@ declare const workAppSlackUserMappings: drizzle_orm_pg_core569.PgTableWithColumn
|
|
|
1895
1895
|
}, {}, {
|
|
1896
1896
|
length: 256;
|
|
1897
1897
|
}>;
|
|
1898
|
-
tenantId:
|
|
1898
|
+
tenantId: drizzle_orm_pg_core1458.PgColumn<{
|
|
1899
1899
|
name: "tenant_id";
|
|
1900
1900
|
tableName: "work_app_slack_user_mappings";
|
|
1901
1901
|
dataType: "string";
|
|
@@ -1914,7 +1914,7 @@ declare const workAppSlackUserMappings: drizzle_orm_pg_core569.PgTableWithColumn
|
|
|
1914
1914
|
}, {}, {
|
|
1915
1915
|
length: 256;
|
|
1916
1916
|
}>;
|
|
1917
|
-
clientId:
|
|
1917
|
+
clientId: drizzle_orm_pg_core1458.PgColumn<{
|
|
1918
1918
|
name: "client_id";
|
|
1919
1919
|
tableName: "work_app_slack_user_mappings";
|
|
1920
1920
|
dataType: "string";
|
|
@@ -1933,7 +1933,7 @@ declare const workAppSlackUserMappings: drizzle_orm_pg_core569.PgTableWithColumn
|
|
|
1933
1933
|
}, {}, {
|
|
1934
1934
|
length: 256;
|
|
1935
1935
|
}>;
|
|
1936
|
-
slackUserId:
|
|
1936
|
+
slackUserId: drizzle_orm_pg_core1458.PgColumn<{
|
|
1937
1937
|
name: "slack_user_id";
|
|
1938
1938
|
tableName: "work_app_slack_user_mappings";
|
|
1939
1939
|
dataType: "string";
|
|
@@ -1952,7 +1952,7 @@ declare const workAppSlackUserMappings: drizzle_orm_pg_core569.PgTableWithColumn
|
|
|
1952
1952
|
}, {}, {
|
|
1953
1953
|
length: 256;
|
|
1954
1954
|
}>;
|
|
1955
|
-
slackTeamId:
|
|
1955
|
+
slackTeamId: drizzle_orm_pg_core1458.PgColumn<{
|
|
1956
1956
|
name: "slack_team_id";
|
|
1957
1957
|
tableName: "work_app_slack_user_mappings";
|
|
1958
1958
|
dataType: "string";
|
|
@@ -1971,7 +1971,7 @@ declare const workAppSlackUserMappings: drizzle_orm_pg_core569.PgTableWithColumn
|
|
|
1971
1971
|
}, {}, {
|
|
1972
1972
|
length: 256;
|
|
1973
1973
|
}>;
|
|
1974
|
-
slackEnterpriseId:
|
|
1974
|
+
slackEnterpriseId: drizzle_orm_pg_core1458.PgColumn<{
|
|
1975
1975
|
name: "slack_enterprise_id";
|
|
1976
1976
|
tableName: "work_app_slack_user_mappings";
|
|
1977
1977
|
dataType: "string";
|
|
@@ -1990,7 +1990,7 @@ declare const workAppSlackUserMappings: drizzle_orm_pg_core569.PgTableWithColumn
|
|
|
1990
1990
|
}, {}, {
|
|
1991
1991
|
length: 256;
|
|
1992
1992
|
}>;
|
|
1993
|
-
inkeepUserId:
|
|
1993
|
+
inkeepUserId: drizzle_orm_pg_core1458.PgColumn<{
|
|
1994
1994
|
name: "inkeep_user_id";
|
|
1995
1995
|
tableName: "work_app_slack_user_mappings";
|
|
1996
1996
|
dataType: "string";
|
|
@@ -2007,7 +2007,7 @@ declare const workAppSlackUserMappings: drizzle_orm_pg_core569.PgTableWithColumn
|
|
|
2007
2007
|
identity: undefined;
|
|
2008
2008
|
generated: undefined;
|
|
2009
2009
|
}, {}, {}>;
|
|
2010
|
-
slackUsername:
|
|
2010
|
+
slackUsername: drizzle_orm_pg_core1458.PgColumn<{
|
|
2011
2011
|
name: "slack_username";
|
|
2012
2012
|
tableName: "work_app_slack_user_mappings";
|
|
2013
2013
|
dataType: "string";
|
|
@@ -2026,7 +2026,7 @@ declare const workAppSlackUserMappings: drizzle_orm_pg_core569.PgTableWithColumn
|
|
|
2026
2026
|
}, {}, {
|
|
2027
2027
|
length: 256;
|
|
2028
2028
|
}>;
|
|
2029
|
-
slackEmail:
|
|
2029
|
+
slackEmail: drizzle_orm_pg_core1458.PgColumn<{
|
|
2030
2030
|
name: "slack_email";
|
|
2031
2031
|
tableName: "work_app_slack_user_mappings";
|
|
2032
2032
|
dataType: "string";
|
|
@@ -2045,7 +2045,7 @@ declare const workAppSlackUserMappings: drizzle_orm_pg_core569.PgTableWithColumn
|
|
|
2045
2045
|
}, {}, {
|
|
2046
2046
|
length: 256;
|
|
2047
2047
|
}>;
|
|
2048
|
-
linkedAt:
|
|
2048
|
+
linkedAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
2049
2049
|
name: "linked_at";
|
|
2050
2050
|
tableName: "work_app_slack_user_mappings";
|
|
2051
2051
|
dataType: "string";
|
|
@@ -2062,7 +2062,7 @@ declare const workAppSlackUserMappings: drizzle_orm_pg_core569.PgTableWithColumn
|
|
|
2062
2062
|
identity: undefined;
|
|
2063
2063
|
generated: undefined;
|
|
2064
2064
|
}, {}, {}>;
|
|
2065
|
-
lastUsedAt:
|
|
2065
|
+
lastUsedAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
2066
2066
|
name: "last_used_at";
|
|
2067
2067
|
tableName: "work_app_slack_user_mappings";
|
|
2068
2068
|
dataType: "string";
|
|
@@ -2087,11 +2087,11 @@ declare const workAppSlackUserMappings: drizzle_orm_pg_core569.PgTableWithColumn
|
|
|
2087
2087
|
* Allows admins to set channel-specific agent defaults that override workspace defaults.
|
|
2088
2088
|
* Unique per tenant + slackTeamId + slackChannelId.
|
|
2089
2089
|
*/
|
|
2090
|
-
declare const workAppSlackChannelAgentConfigs:
|
|
2090
|
+
declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
2091
2091
|
name: "work_app_slack_channel_agent_configs";
|
|
2092
2092
|
schema: undefined;
|
|
2093
2093
|
columns: {
|
|
2094
|
-
createdAt:
|
|
2094
|
+
createdAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
2095
2095
|
name: "created_at";
|
|
2096
2096
|
tableName: "work_app_slack_channel_agent_configs";
|
|
2097
2097
|
dataType: "string";
|
|
@@ -2108,7 +2108,7 @@ declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core569.PgTableWit
|
|
|
2108
2108
|
identity: undefined;
|
|
2109
2109
|
generated: undefined;
|
|
2110
2110
|
}, {}, {}>;
|
|
2111
|
-
updatedAt:
|
|
2111
|
+
updatedAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
2112
2112
|
name: "updated_at";
|
|
2113
2113
|
tableName: "work_app_slack_channel_agent_configs";
|
|
2114
2114
|
dataType: "string";
|
|
@@ -2125,7 +2125,7 @@ declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core569.PgTableWit
|
|
|
2125
2125
|
identity: undefined;
|
|
2126
2126
|
generated: undefined;
|
|
2127
2127
|
}, {}, {}>;
|
|
2128
|
-
id:
|
|
2128
|
+
id: drizzle_orm_pg_core1458.PgColumn<{
|
|
2129
2129
|
name: "id";
|
|
2130
2130
|
tableName: "work_app_slack_channel_agent_configs";
|
|
2131
2131
|
dataType: "string";
|
|
@@ -2144,7 +2144,7 @@ declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core569.PgTableWit
|
|
|
2144
2144
|
}, {}, {
|
|
2145
2145
|
length: 256;
|
|
2146
2146
|
}>;
|
|
2147
|
-
tenantId:
|
|
2147
|
+
tenantId: drizzle_orm_pg_core1458.PgColumn<{
|
|
2148
2148
|
name: "tenant_id";
|
|
2149
2149
|
tableName: "work_app_slack_channel_agent_configs";
|
|
2150
2150
|
dataType: "string";
|
|
@@ -2163,7 +2163,7 @@ declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core569.PgTableWit
|
|
|
2163
2163
|
}, {}, {
|
|
2164
2164
|
length: 256;
|
|
2165
2165
|
}>;
|
|
2166
|
-
slackTeamId:
|
|
2166
|
+
slackTeamId: drizzle_orm_pg_core1458.PgColumn<{
|
|
2167
2167
|
name: "slack_team_id";
|
|
2168
2168
|
tableName: "work_app_slack_channel_agent_configs";
|
|
2169
2169
|
dataType: "string";
|
|
@@ -2182,7 +2182,7 @@ declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core569.PgTableWit
|
|
|
2182
2182
|
}, {}, {
|
|
2183
2183
|
length: 256;
|
|
2184
2184
|
}>;
|
|
2185
|
-
slackChannelId:
|
|
2185
|
+
slackChannelId: drizzle_orm_pg_core1458.PgColumn<{
|
|
2186
2186
|
name: "slack_channel_id";
|
|
2187
2187
|
tableName: "work_app_slack_channel_agent_configs";
|
|
2188
2188
|
dataType: "string";
|
|
@@ -2201,7 +2201,7 @@ declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core569.PgTableWit
|
|
|
2201
2201
|
}, {}, {
|
|
2202
2202
|
length: 256;
|
|
2203
2203
|
}>;
|
|
2204
|
-
slackChannelName:
|
|
2204
|
+
slackChannelName: drizzle_orm_pg_core1458.PgColumn<{
|
|
2205
2205
|
name: "slack_channel_name";
|
|
2206
2206
|
tableName: "work_app_slack_channel_agent_configs";
|
|
2207
2207
|
dataType: "string";
|
|
@@ -2220,7 +2220,7 @@ declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core569.PgTableWit
|
|
|
2220
2220
|
}, {}, {
|
|
2221
2221
|
length: 256;
|
|
2222
2222
|
}>;
|
|
2223
|
-
slackChannelType:
|
|
2223
|
+
slackChannelType: drizzle_orm_pg_core1458.PgColumn<{
|
|
2224
2224
|
name: "slack_channel_type";
|
|
2225
2225
|
tableName: "work_app_slack_channel_agent_configs";
|
|
2226
2226
|
dataType: "string";
|
|
@@ -2239,7 +2239,7 @@ declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core569.PgTableWit
|
|
|
2239
2239
|
}, {}, {
|
|
2240
2240
|
length: 50;
|
|
2241
2241
|
}>;
|
|
2242
|
-
projectId:
|
|
2242
|
+
projectId: drizzle_orm_pg_core1458.PgColumn<{
|
|
2243
2243
|
name: "project_id";
|
|
2244
2244
|
tableName: "work_app_slack_channel_agent_configs";
|
|
2245
2245
|
dataType: "string";
|
|
@@ -2258,7 +2258,7 @@ declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core569.PgTableWit
|
|
|
2258
2258
|
}, {}, {
|
|
2259
2259
|
length: 256;
|
|
2260
2260
|
}>;
|
|
2261
|
-
agentId:
|
|
2261
|
+
agentId: drizzle_orm_pg_core1458.PgColumn<{
|
|
2262
2262
|
name: "agent_id";
|
|
2263
2263
|
tableName: "work_app_slack_channel_agent_configs";
|
|
2264
2264
|
dataType: "string";
|
|
@@ -2277,7 +2277,7 @@ declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core569.PgTableWit
|
|
|
2277
2277
|
}, {}, {
|
|
2278
2278
|
length: 256;
|
|
2279
2279
|
}>;
|
|
2280
|
-
configuredByUserId:
|
|
2280
|
+
configuredByUserId: drizzle_orm_pg_core1458.PgColumn<{
|
|
2281
2281
|
name: "configured_by_user_id";
|
|
2282
2282
|
tableName: "work_app_slack_channel_agent_configs";
|
|
2283
2283
|
dataType: "string";
|
|
@@ -2294,7 +2294,7 @@ declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core569.PgTableWit
|
|
|
2294
2294
|
identity: undefined;
|
|
2295
2295
|
generated: undefined;
|
|
2296
2296
|
}, {}, {}>;
|
|
2297
|
-
enabled:
|
|
2297
|
+
enabled: drizzle_orm_pg_core1458.PgColumn<{
|
|
2298
2298
|
name: "enabled";
|
|
2299
2299
|
tableName: "work_app_slack_channel_agent_configs";
|
|
2300
2300
|
dataType: "boolean";
|
|
@@ -2311,7 +2311,7 @@ declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core569.PgTableWit
|
|
|
2311
2311
|
identity: undefined;
|
|
2312
2312
|
generated: undefined;
|
|
2313
2313
|
}, {}, {}>;
|
|
2314
|
-
grantAccessToMembers:
|
|
2314
|
+
grantAccessToMembers: drizzle_orm_pg_core1458.PgColumn<{
|
|
2315
2315
|
name: "grant_access_to_members";
|
|
2316
2316
|
tableName: "work_app_slack_channel_agent_configs";
|
|
2317
2317
|
dataType: "boolean";
|
|
@@ -2331,11 +2331,11 @@ declare const workAppSlackChannelAgentConfigs: drizzle_orm_pg_core569.PgTableWit
|
|
|
2331
2331
|
};
|
|
2332
2332
|
dialect: "pg";
|
|
2333
2333
|
}>;
|
|
2334
|
-
declare const scheduledTriggers:
|
|
2334
|
+
declare const scheduledTriggers: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
2335
2335
|
name: "scheduled_triggers";
|
|
2336
2336
|
schema: undefined;
|
|
2337
2337
|
columns: {
|
|
2338
|
-
createdAt:
|
|
2338
|
+
createdAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
2339
2339
|
name: "created_at";
|
|
2340
2340
|
tableName: "scheduled_triggers";
|
|
2341
2341
|
dataType: "string";
|
|
@@ -2352,7 +2352,7 @@ declare const scheduledTriggers: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
2352
2352
|
identity: undefined;
|
|
2353
2353
|
generated: undefined;
|
|
2354
2354
|
}, {}, {}>;
|
|
2355
|
-
updatedAt:
|
|
2355
|
+
updatedAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
2356
2356
|
name: "updated_at";
|
|
2357
2357
|
tableName: "scheduled_triggers";
|
|
2358
2358
|
dataType: "string";
|
|
@@ -2369,7 +2369,7 @@ declare const scheduledTriggers: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
2369
2369
|
identity: undefined;
|
|
2370
2370
|
generated: undefined;
|
|
2371
2371
|
}, {}, {}>;
|
|
2372
|
-
name:
|
|
2372
|
+
name: drizzle_orm_pg_core1458.PgColumn<{
|
|
2373
2373
|
name: "name";
|
|
2374
2374
|
tableName: "scheduled_triggers";
|
|
2375
2375
|
dataType: "string";
|
|
@@ -2388,7 +2388,7 @@ declare const scheduledTriggers: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
2388
2388
|
}, {}, {
|
|
2389
2389
|
length: 256;
|
|
2390
2390
|
}>;
|
|
2391
|
-
description:
|
|
2391
|
+
description: drizzle_orm_pg_core1458.PgColumn<{
|
|
2392
2392
|
name: "description";
|
|
2393
2393
|
tableName: "scheduled_triggers";
|
|
2394
2394
|
dataType: "string";
|
|
@@ -2405,7 +2405,7 @@ declare const scheduledTriggers: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
2405
2405
|
identity: undefined;
|
|
2406
2406
|
generated: undefined;
|
|
2407
2407
|
}, {}, {}>;
|
|
2408
|
-
enabled:
|
|
2408
|
+
enabled: drizzle_orm_pg_core1458.PgColumn<{
|
|
2409
2409
|
name: "enabled";
|
|
2410
2410
|
tableName: "scheduled_triggers";
|
|
2411
2411
|
dataType: "boolean";
|
|
@@ -2422,7 +2422,7 @@ declare const scheduledTriggers: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
2422
2422
|
identity: undefined;
|
|
2423
2423
|
generated: undefined;
|
|
2424
2424
|
}, {}, {}>;
|
|
2425
|
-
cronExpression:
|
|
2425
|
+
cronExpression: drizzle_orm_pg_core1458.PgColumn<{
|
|
2426
2426
|
name: "cron_expression";
|
|
2427
2427
|
tableName: "scheduled_triggers";
|
|
2428
2428
|
dataType: "string";
|
|
@@ -2441,7 +2441,7 @@ declare const scheduledTriggers: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
2441
2441
|
}, {}, {
|
|
2442
2442
|
length: 256;
|
|
2443
2443
|
}>;
|
|
2444
|
-
cronTimezone:
|
|
2444
|
+
cronTimezone: drizzle_orm_pg_core1458.PgColumn<{
|
|
2445
2445
|
name: "cron_timezone";
|
|
2446
2446
|
tableName: "scheduled_triggers";
|
|
2447
2447
|
dataType: "string";
|
|
@@ -2460,7 +2460,7 @@ declare const scheduledTriggers: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
2460
2460
|
}, {}, {
|
|
2461
2461
|
length: 64;
|
|
2462
2462
|
}>;
|
|
2463
|
-
runAt:
|
|
2463
|
+
runAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
2464
2464
|
name: "run_at";
|
|
2465
2465
|
tableName: "scheduled_triggers";
|
|
2466
2466
|
dataType: "string";
|
|
@@ -2477,7 +2477,7 @@ declare const scheduledTriggers: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
2477
2477
|
identity: undefined;
|
|
2478
2478
|
generated: undefined;
|
|
2479
2479
|
}, {}, {}>;
|
|
2480
|
-
payload:
|
|
2480
|
+
payload: drizzle_orm_pg_core1458.PgColumn<{
|
|
2481
2481
|
name: "payload";
|
|
2482
2482
|
tableName: "scheduled_triggers";
|
|
2483
2483
|
dataType: "json";
|
|
@@ -2496,7 +2496,7 @@ declare const scheduledTriggers: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
2496
2496
|
}, {}, {
|
|
2497
2497
|
$type: Record<string, unknown> | null;
|
|
2498
2498
|
}>;
|
|
2499
|
-
messageTemplate:
|
|
2499
|
+
messageTemplate: drizzle_orm_pg_core1458.PgColumn<{
|
|
2500
2500
|
name: "message_template";
|
|
2501
2501
|
tableName: "scheduled_triggers";
|
|
2502
2502
|
dataType: "string";
|
|
@@ -2513,7 +2513,7 @@ declare const scheduledTriggers: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
2513
2513
|
identity: undefined;
|
|
2514
2514
|
generated: undefined;
|
|
2515
2515
|
}, {}, {}>;
|
|
2516
|
-
maxRetries:
|
|
2516
|
+
maxRetries: drizzle_orm_pg_core1458.PgColumn<{
|
|
2517
2517
|
name: "max_retries";
|
|
2518
2518
|
tableName: "scheduled_triggers";
|
|
2519
2519
|
dataType: "number";
|
|
@@ -2530,7 +2530,7 @@ declare const scheduledTriggers: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
2530
2530
|
identity: undefined;
|
|
2531
2531
|
generated: undefined;
|
|
2532
2532
|
}, {}, {}>;
|
|
2533
|
-
retryDelaySeconds:
|
|
2533
|
+
retryDelaySeconds: drizzle_orm_pg_core1458.PgColumn<{
|
|
2534
2534
|
name: "retry_delay_seconds";
|
|
2535
2535
|
tableName: "scheduled_triggers";
|
|
2536
2536
|
dataType: "number";
|
|
@@ -2547,7 +2547,7 @@ declare const scheduledTriggers: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
2547
2547
|
identity: undefined;
|
|
2548
2548
|
generated: undefined;
|
|
2549
2549
|
}, {}, {}>;
|
|
2550
|
-
timeoutSeconds:
|
|
2550
|
+
timeoutSeconds: drizzle_orm_pg_core1458.PgColumn<{
|
|
2551
2551
|
name: "timeout_seconds";
|
|
2552
2552
|
tableName: "scheduled_triggers";
|
|
2553
2553
|
dataType: "number";
|
|
@@ -2564,7 +2564,7 @@ declare const scheduledTriggers: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
2564
2564
|
identity: undefined;
|
|
2565
2565
|
generated: undefined;
|
|
2566
2566
|
}, {}, {}>;
|
|
2567
|
-
runAsUserId:
|
|
2567
|
+
runAsUserId: drizzle_orm_pg_core1458.PgColumn<{
|
|
2568
2568
|
name: "run_as_user_id";
|
|
2569
2569
|
tableName: "scheduled_triggers";
|
|
2570
2570
|
dataType: "string";
|
|
@@ -2583,7 +2583,7 @@ declare const scheduledTriggers: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
2583
2583
|
}, {}, {
|
|
2584
2584
|
length: 256;
|
|
2585
2585
|
}>;
|
|
2586
|
-
createdBy:
|
|
2586
|
+
createdBy: drizzle_orm_pg_core1458.PgColumn<{
|
|
2587
2587
|
name: "created_by";
|
|
2588
2588
|
tableName: "scheduled_triggers";
|
|
2589
2589
|
dataType: "string";
|
|
@@ -2602,7 +2602,7 @@ declare const scheduledTriggers: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
2602
2602
|
}, {}, {
|
|
2603
2603
|
length: 256;
|
|
2604
2604
|
}>;
|
|
2605
|
-
nextRunAt:
|
|
2605
|
+
nextRunAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
2606
2606
|
name: "next_run_at";
|
|
2607
2607
|
tableName: "scheduled_triggers";
|
|
2608
2608
|
dataType: "string";
|
|
@@ -2619,7 +2619,7 @@ declare const scheduledTriggers: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
2619
2619
|
identity: undefined;
|
|
2620
2620
|
generated: undefined;
|
|
2621
2621
|
}, {}, {}>;
|
|
2622
|
-
ref:
|
|
2622
|
+
ref: drizzle_orm_pg_core1458.PgColumn<{
|
|
2623
2623
|
name: "ref";
|
|
2624
2624
|
tableName: "scheduled_triggers";
|
|
2625
2625
|
dataType: "string";
|
|
@@ -2638,7 +2638,7 @@ declare const scheduledTriggers: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
2638
2638
|
}, {}, {
|
|
2639
2639
|
length: 256;
|
|
2640
2640
|
}>;
|
|
2641
|
-
agentId:
|
|
2641
|
+
agentId: drizzle_orm_pg_core1458.PgColumn<{
|
|
2642
2642
|
name: "agent_id";
|
|
2643
2643
|
tableName: "scheduled_triggers";
|
|
2644
2644
|
dataType: "string";
|
|
@@ -2657,7 +2657,7 @@ declare const scheduledTriggers: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
2657
2657
|
}, {}, {
|
|
2658
2658
|
length: 256;
|
|
2659
2659
|
}>;
|
|
2660
|
-
projectId:
|
|
2660
|
+
projectId: drizzle_orm_pg_core1458.PgColumn<{
|
|
2661
2661
|
name: "project_id";
|
|
2662
2662
|
tableName: "scheduled_triggers";
|
|
2663
2663
|
dataType: "string";
|
|
@@ -2676,7 +2676,7 @@ declare const scheduledTriggers: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
2676
2676
|
}, {}, {
|
|
2677
2677
|
length: 256;
|
|
2678
2678
|
}>;
|
|
2679
|
-
tenantId:
|
|
2679
|
+
tenantId: drizzle_orm_pg_core1458.PgColumn<{
|
|
2680
2680
|
name: "tenant_id";
|
|
2681
2681
|
tableName: "scheduled_triggers";
|
|
2682
2682
|
dataType: "string";
|
|
@@ -2695,7 +2695,7 @@ declare const scheduledTriggers: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
2695
2695
|
}, {}, {
|
|
2696
2696
|
length: 256;
|
|
2697
2697
|
}>;
|
|
2698
|
-
id:
|
|
2698
|
+
id: drizzle_orm_pg_core1458.PgColumn<{
|
|
2699
2699
|
name: "id";
|
|
2700
2700
|
tableName: "scheduled_triggers";
|
|
2701
2701
|
dataType: "string";
|
|
@@ -2717,11 +2717,11 @@ declare const scheduledTriggers: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
2717
2717
|
};
|
|
2718
2718
|
dialect: "pg";
|
|
2719
2719
|
}>;
|
|
2720
|
-
declare const scheduledTriggerInvocations:
|
|
2720
|
+
declare const scheduledTriggerInvocations: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
2721
2721
|
name: "scheduled_trigger_invocations";
|
|
2722
2722
|
schema: undefined;
|
|
2723
2723
|
columns: {
|
|
2724
|
-
scheduledTriggerId:
|
|
2724
|
+
scheduledTriggerId: drizzle_orm_pg_core1458.PgColumn<{
|
|
2725
2725
|
name: "scheduled_trigger_id";
|
|
2726
2726
|
tableName: "scheduled_trigger_invocations";
|
|
2727
2727
|
dataType: "string";
|
|
@@ -2740,7 +2740,7 @@ declare const scheduledTriggerInvocations: drizzle_orm_pg_core569.PgTableWithCol
|
|
|
2740
2740
|
}, {}, {
|
|
2741
2741
|
length: 256;
|
|
2742
2742
|
}>;
|
|
2743
|
-
ref:
|
|
2743
|
+
ref: drizzle_orm_pg_core1458.PgColumn<{
|
|
2744
2744
|
name: "ref";
|
|
2745
2745
|
tableName: "scheduled_trigger_invocations";
|
|
2746
2746
|
dataType: "json";
|
|
@@ -2767,7 +2767,7 @@ declare const scheduledTriggerInvocations: drizzle_orm_pg_core569.PgTableWithCol
|
|
|
2767
2767
|
hash: string;
|
|
2768
2768
|
};
|
|
2769
2769
|
}>;
|
|
2770
|
-
status:
|
|
2770
|
+
status: drizzle_orm_pg_core1458.PgColumn<{
|
|
2771
2771
|
name: "status";
|
|
2772
2772
|
tableName: "scheduled_trigger_invocations";
|
|
2773
2773
|
dataType: "string";
|
|
@@ -2787,7 +2787,7 @@ declare const scheduledTriggerInvocations: drizzle_orm_pg_core569.PgTableWithCol
|
|
|
2787
2787
|
length: 50;
|
|
2788
2788
|
$type: "pending" | "running" | "completed" | "failed" | "cancelled";
|
|
2789
2789
|
}>;
|
|
2790
|
-
scheduledFor:
|
|
2790
|
+
scheduledFor: drizzle_orm_pg_core1458.PgColumn<{
|
|
2791
2791
|
name: "scheduled_for";
|
|
2792
2792
|
tableName: "scheduled_trigger_invocations";
|
|
2793
2793
|
dataType: "string";
|
|
@@ -2804,7 +2804,7 @@ declare const scheduledTriggerInvocations: drizzle_orm_pg_core569.PgTableWithCol
|
|
|
2804
2804
|
identity: undefined;
|
|
2805
2805
|
generated: undefined;
|
|
2806
2806
|
}, {}, {}>;
|
|
2807
|
-
startedAt:
|
|
2807
|
+
startedAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
2808
2808
|
name: "started_at";
|
|
2809
2809
|
tableName: "scheduled_trigger_invocations";
|
|
2810
2810
|
dataType: "string";
|
|
@@ -2821,7 +2821,7 @@ declare const scheduledTriggerInvocations: drizzle_orm_pg_core569.PgTableWithCol
|
|
|
2821
2821
|
identity: undefined;
|
|
2822
2822
|
generated: undefined;
|
|
2823
2823
|
}, {}, {}>;
|
|
2824
|
-
completedAt:
|
|
2824
|
+
completedAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
2825
2825
|
name: "completed_at";
|
|
2826
2826
|
tableName: "scheduled_trigger_invocations";
|
|
2827
2827
|
dataType: "string";
|
|
@@ -2838,7 +2838,7 @@ declare const scheduledTriggerInvocations: drizzle_orm_pg_core569.PgTableWithCol
|
|
|
2838
2838
|
identity: undefined;
|
|
2839
2839
|
generated: undefined;
|
|
2840
2840
|
}, {}, {}>;
|
|
2841
|
-
resolvedPayload:
|
|
2841
|
+
resolvedPayload: drizzle_orm_pg_core1458.PgColumn<{
|
|
2842
2842
|
name: "resolved_payload";
|
|
2843
2843
|
tableName: "scheduled_trigger_invocations";
|
|
2844
2844
|
dataType: "json";
|
|
@@ -2857,7 +2857,7 @@ declare const scheduledTriggerInvocations: drizzle_orm_pg_core569.PgTableWithCol
|
|
|
2857
2857
|
}, {}, {
|
|
2858
2858
|
$type: Record<string, unknown> | null;
|
|
2859
2859
|
}>;
|
|
2860
|
-
conversationIds:
|
|
2860
|
+
conversationIds: drizzle_orm_pg_core1458.PgColumn<{
|
|
2861
2861
|
name: "conversation_ids";
|
|
2862
2862
|
tableName: "scheduled_trigger_invocations";
|
|
2863
2863
|
dataType: "json";
|
|
@@ -2876,7 +2876,7 @@ declare const scheduledTriggerInvocations: drizzle_orm_pg_core569.PgTableWithCol
|
|
|
2876
2876
|
}, {}, {
|
|
2877
2877
|
$type: string[];
|
|
2878
2878
|
}>;
|
|
2879
|
-
attemptNumber:
|
|
2879
|
+
attemptNumber: drizzle_orm_pg_core1458.PgColumn<{
|
|
2880
2880
|
name: "attempt_number";
|
|
2881
2881
|
tableName: "scheduled_trigger_invocations";
|
|
2882
2882
|
dataType: "number";
|
|
@@ -2893,7 +2893,7 @@ declare const scheduledTriggerInvocations: drizzle_orm_pg_core569.PgTableWithCol
|
|
|
2893
2893
|
identity: undefined;
|
|
2894
2894
|
generated: undefined;
|
|
2895
2895
|
}, {}, {}>;
|
|
2896
|
-
idempotencyKey:
|
|
2896
|
+
idempotencyKey: drizzle_orm_pg_core1458.PgColumn<{
|
|
2897
2897
|
name: "idempotency_key";
|
|
2898
2898
|
tableName: "scheduled_trigger_invocations";
|
|
2899
2899
|
dataType: "string";
|
|
@@ -2912,7 +2912,7 @@ declare const scheduledTriggerInvocations: drizzle_orm_pg_core569.PgTableWithCol
|
|
|
2912
2912
|
}, {}, {
|
|
2913
2913
|
length: 256;
|
|
2914
2914
|
}>;
|
|
2915
|
-
createdAt:
|
|
2915
|
+
createdAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
2916
2916
|
name: "created_at";
|
|
2917
2917
|
tableName: "scheduled_trigger_invocations";
|
|
2918
2918
|
dataType: "string";
|
|
@@ -2929,7 +2929,7 @@ declare const scheduledTriggerInvocations: drizzle_orm_pg_core569.PgTableWithCol
|
|
|
2929
2929
|
identity: undefined;
|
|
2930
2930
|
generated: undefined;
|
|
2931
2931
|
}, {}, {}>;
|
|
2932
|
-
agentId:
|
|
2932
|
+
agentId: drizzle_orm_pg_core1458.PgColumn<{
|
|
2933
2933
|
name: "agent_id";
|
|
2934
2934
|
tableName: "scheduled_trigger_invocations";
|
|
2935
2935
|
dataType: "string";
|
|
@@ -2948,7 +2948,7 @@ declare const scheduledTriggerInvocations: drizzle_orm_pg_core569.PgTableWithCol
|
|
|
2948
2948
|
}, {}, {
|
|
2949
2949
|
length: 256;
|
|
2950
2950
|
}>;
|
|
2951
|
-
projectId:
|
|
2951
|
+
projectId: drizzle_orm_pg_core1458.PgColumn<{
|
|
2952
2952
|
name: "project_id";
|
|
2953
2953
|
tableName: "scheduled_trigger_invocations";
|
|
2954
2954
|
dataType: "string";
|
|
@@ -2967,7 +2967,7 @@ declare const scheduledTriggerInvocations: drizzle_orm_pg_core569.PgTableWithCol
|
|
|
2967
2967
|
}, {}, {
|
|
2968
2968
|
length: 256;
|
|
2969
2969
|
}>;
|
|
2970
|
-
tenantId:
|
|
2970
|
+
tenantId: drizzle_orm_pg_core1458.PgColumn<{
|
|
2971
2971
|
name: "tenant_id";
|
|
2972
2972
|
tableName: "scheduled_trigger_invocations";
|
|
2973
2973
|
dataType: "string";
|
|
@@ -2986,7 +2986,7 @@ declare const scheduledTriggerInvocations: drizzle_orm_pg_core569.PgTableWithCol
|
|
|
2986
2986
|
}, {}, {
|
|
2987
2987
|
length: 256;
|
|
2988
2988
|
}>;
|
|
2989
|
-
id:
|
|
2989
|
+
id: drizzle_orm_pg_core1458.PgColumn<{
|
|
2990
2990
|
name: "id";
|
|
2991
2991
|
tableName: "scheduled_trigger_invocations";
|
|
2992
2992
|
dataType: "string";
|
|
@@ -3008,11 +3008,11 @@ declare const scheduledTriggerInvocations: drizzle_orm_pg_core569.PgTableWithCol
|
|
|
3008
3008
|
};
|
|
3009
3009
|
dialect: "pg";
|
|
3010
3010
|
}>;
|
|
3011
|
-
declare const schedulerState:
|
|
3011
|
+
declare const schedulerState: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
3012
3012
|
name: "scheduler_state";
|
|
3013
3013
|
schema: undefined;
|
|
3014
3014
|
columns: {
|
|
3015
|
-
createdAt:
|
|
3015
|
+
createdAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
3016
3016
|
name: "created_at";
|
|
3017
3017
|
tableName: "scheduler_state";
|
|
3018
3018
|
dataType: "string";
|
|
@@ -3029,7 +3029,7 @@ declare const schedulerState: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3029
3029
|
identity: undefined;
|
|
3030
3030
|
generated: undefined;
|
|
3031
3031
|
}, {}, {}>;
|
|
3032
|
-
updatedAt:
|
|
3032
|
+
updatedAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
3033
3033
|
name: "updated_at";
|
|
3034
3034
|
tableName: "scheduler_state";
|
|
3035
3035
|
dataType: "string";
|
|
@@ -3046,7 +3046,7 @@ declare const schedulerState: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3046
3046
|
identity: undefined;
|
|
3047
3047
|
generated: undefined;
|
|
3048
3048
|
}, {}, {}>;
|
|
3049
|
-
id:
|
|
3049
|
+
id: drizzle_orm_pg_core1458.PgColumn<{
|
|
3050
3050
|
name: "id";
|
|
3051
3051
|
tableName: "scheduler_state";
|
|
3052
3052
|
dataType: "string";
|
|
@@ -3065,7 +3065,7 @@ declare const schedulerState: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3065
3065
|
}, {}, {
|
|
3066
3066
|
length: 256;
|
|
3067
3067
|
}>;
|
|
3068
|
-
currentRunId:
|
|
3068
|
+
currentRunId: drizzle_orm_pg_core1458.PgColumn<{
|
|
3069
3069
|
name: "current_run_id";
|
|
3070
3070
|
tableName: "scheduler_state";
|
|
3071
3071
|
dataType: "string";
|
|
@@ -3087,11 +3087,11 @@ declare const schedulerState: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3087
3087
|
};
|
|
3088
3088
|
dialect: "pg";
|
|
3089
3089
|
}>;
|
|
3090
|
-
declare const messages:
|
|
3090
|
+
declare const messages: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
3091
3091
|
name: "messages";
|
|
3092
3092
|
schema: undefined;
|
|
3093
3093
|
columns: {
|
|
3094
|
-
createdAt:
|
|
3094
|
+
createdAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
3095
3095
|
name: "created_at";
|
|
3096
3096
|
tableName: "messages";
|
|
3097
3097
|
dataType: "string";
|
|
@@ -3108,7 +3108,7 @@ declare const messages: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3108
3108
|
identity: undefined;
|
|
3109
3109
|
generated: undefined;
|
|
3110
3110
|
}, {}, {}>;
|
|
3111
|
-
updatedAt:
|
|
3111
|
+
updatedAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
3112
3112
|
name: "updated_at";
|
|
3113
3113
|
tableName: "messages";
|
|
3114
3114
|
dataType: "string";
|
|
@@ -3125,7 +3125,7 @@ declare const messages: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3125
3125
|
identity: undefined;
|
|
3126
3126
|
generated: undefined;
|
|
3127
3127
|
}, {}, {}>;
|
|
3128
|
-
conversationId:
|
|
3128
|
+
conversationId: drizzle_orm_pg_core1458.PgColumn<{
|
|
3129
3129
|
name: "conversation_id";
|
|
3130
3130
|
tableName: "messages";
|
|
3131
3131
|
dataType: "string";
|
|
@@ -3144,7 +3144,7 @@ declare const messages: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3144
3144
|
}, {}, {
|
|
3145
3145
|
length: 256;
|
|
3146
3146
|
}>;
|
|
3147
|
-
role:
|
|
3147
|
+
role: drizzle_orm_pg_core1458.PgColumn<{
|
|
3148
3148
|
name: "role";
|
|
3149
3149
|
tableName: "messages";
|
|
3150
3150
|
dataType: "string";
|
|
@@ -3163,7 +3163,7 @@ declare const messages: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3163
3163
|
}, {}, {
|
|
3164
3164
|
length: 256;
|
|
3165
3165
|
}>;
|
|
3166
|
-
fromSubAgentId:
|
|
3166
|
+
fromSubAgentId: drizzle_orm_pg_core1458.PgColumn<{
|
|
3167
3167
|
name: "from_sub_agent_id";
|
|
3168
3168
|
tableName: "messages";
|
|
3169
3169
|
dataType: "string";
|
|
@@ -3182,7 +3182,7 @@ declare const messages: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3182
3182
|
}, {}, {
|
|
3183
3183
|
length: 256;
|
|
3184
3184
|
}>;
|
|
3185
|
-
toSubAgentId:
|
|
3185
|
+
toSubAgentId: drizzle_orm_pg_core1458.PgColumn<{
|
|
3186
3186
|
name: "to_sub_agent_id";
|
|
3187
3187
|
tableName: "messages";
|
|
3188
3188
|
dataType: "string";
|
|
@@ -3201,7 +3201,7 @@ declare const messages: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3201
3201
|
}, {}, {
|
|
3202
3202
|
length: 256;
|
|
3203
3203
|
}>;
|
|
3204
|
-
fromExternalAgentId:
|
|
3204
|
+
fromExternalAgentId: drizzle_orm_pg_core1458.PgColumn<{
|
|
3205
3205
|
name: "from_external_sub_agent_id";
|
|
3206
3206
|
tableName: "messages";
|
|
3207
3207
|
dataType: "string";
|
|
@@ -3220,7 +3220,7 @@ declare const messages: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3220
3220
|
}, {}, {
|
|
3221
3221
|
length: 256;
|
|
3222
3222
|
}>;
|
|
3223
|
-
toExternalAgentId:
|
|
3223
|
+
toExternalAgentId: drizzle_orm_pg_core1458.PgColumn<{
|
|
3224
3224
|
name: "to_external_sub_agent_id";
|
|
3225
3225
|
tableName: "messages";
|
|
3226
3226
|
dataType: "string";
|
|
@@ -3239,7 +3239,7 @@ declare const messages: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3239
3239
|
}, {}, {
|
|
3240
3240
|
length: 256;
|
|
3241
3241
|
}>;
|
|
3242
|
-
fromTeamAgentId:
|
|
3242
|
+
fromTeamAgentId: drizzle_orm_pg_core1458.PgColumn<{
|
|
3243
3243
|
name: "from_team_agent_id";
|
|
3244
3244
|
tableName: "messages";
|
|
3245
3245
|
dataType: "string";
|
|
@@ -3258,7 +3258,7 @@ declare const messages: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3258
3258
|
}, {}, {
|
|
3259
3259
|
length: 256;
|
|
3260
3260
|
}>;
|
|
3261
|
-
toTeamAgentId:
|
|
3261
|
+
toTeamAgentId: drizzle_orm_pg_core1458.PgColumn<{
|
|
3262
3262
|
name: "to_team_agent_id";
|
|
3263
3263
|
tableName: "messages";
|
|
3264
3264
|
dataType: "string";
|
|
@@ -3277,7 +3277,7 @@ declare const messages: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3277
3277
|
}, {}, {
|
|
3278
3278
|
length: 256;
|
|
3279
3279
|
}>;
|
|
3280
|
-
content:
|
|
3280
|
+
content: drizzle_orm_pg_core1458.PgColumn<{
|
|
3281
3281
|
name: "content";
|
|
3282
3282
|
tableName: "messages";
|
|
3283
3283
|
dataType: "json";
|
|
@@ -3296,7 +3296,7 @@ declare const messages: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3296
3296
|
}, {}, {
|
|
3297
3297
|
$type: MessageContent;
|
|
3298
3298
|
}>;
|
|
3299
|
-
visibility:
|
|
3299
|
+
visibility: drizzle_orm_pg_core1458.PgColumn<{
|
|
3300
3300
|
name: "visibility";
|
|
3301
3301
|
tableName: "messages";
|
|
3302
3302
|
dataType: "string";
|
|
@@ -3315,7 +3315,7 @@ declare const messages: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3315
3315
|
}, {}, {
|
|
3316
3316
|
length: 256;
|
|
3317
3317
|
}>;
|
|
3318
|
-
messageType:
|
|
3318
|
+
messageType: drizzle_orm_pg_core1458.PgColumn<{
|
|
3319
3319
|
name: "message_type";
|
|
3320
3320
|
tableName: "messages";
|
|
3321
3321
|
dataType: "string";
|
|
@@ -3334,7 +3334,7 @@ declare const messages: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3334
3334
|
}, {}, {
|
|
3335
3335
|
length: 256;
|
|
3336
3336
|
}>;
|
|
3337
|
-
taskId:
|
|
3337
|
+
taskId: drizzle_orm_pg_core1458.PgColumn<{
|
|
3338
3338
|
name: "task_id";
|
|
3339
3339
|
tableName: "messages";
|
|
3340
3340
|
dataType: "string";
|
|
@@ -3353,7 +3353,7 @@ declare const messages: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3353
3353
|
}, {}, {
|
|
3354
3354
|
length: 256;
|
|
3355
3355
|
}>;
|
|
3356
|
-
parentMessageId:
|
|
3356
|
+
parentMessageId: drizzle_orm_pg_core1458.PgColumn<{
|
|
3357
3357
|
name: "parent_message_id";
|
|
3358
3358
|
tableName: "messages";
|
|
3359
3359
|
dataType: "string";
|
|
@@ -3372,7 +3372,7 @@ declare const messages: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3372
3372
|
}, {}, {
|
|
3373
3373
|
length: 256;
|
|
3374
3374
|
}>;
|
|
3375
|
-
a2aTaskId:
|
|
3375
|
+
a2aTaskId: drizzle_orm_pg_core1458.PgColumn<{
|
|
3376
3376
|
name: "a2a_task_id";
|
|
3377
3377
|
tableName: "messages";
|
|
3378
3378
|
dataType: "string";
|
|
@@ -3391,7 +3391,7 @@ declare const messages: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3391
3391
|
}, {}, {
|
|
3392
3392
|
length: 256;
|
|
3393
3393
|
}>;
|
|
3394
|
-
a2aSessionId:
|
|
3394
|
+
a2aSessionId: drizzle_orm_pg_core1458.PgColumn<{
|
|
3395
3395
|
name: "a2a_session_id";
|
|
3396
3396
|
tableName: "messages";
|
|
3397
3397
|
dataType: "string";
|
|
@@ -3410,7 +3410,7 @@ declare const messages: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3410
3410
|
}, {}, {
|
|
3411
3411
|
length: 256;
|
|
3412
3412
|
}>;
|
|
3413
|
-
metadata:
|
|
3413
|
+
metadata: drizzle_orm_pg_core1458.PgColumn<{
|
|
3414
3414
|
name: "metadata";
|
|
3415
3415
|
tableName: "messages";
|
|
3416
3416
|
dataType: "json";
|
|
@@ -3429,7 +3429,7 @@ declare const messages: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3429
3429
|
}, {}, {
|
|
3430
3430
|
$type: MessageMetadata;
|
|
3431
3431
|
}>;
|
|
3432
|
-
projectId:
|
|
3432
|
+
projectId: drizzle_orm_pg_core1458.PgColumn<{
|
|
3433
3433
|
name: "project_id";
|
|
3434
3434
|
tableName: "messages";
|
|
3435
3435
|
dataType: "string";
|
|
@@ -3448,7 +3448,7 @@ declare const messages: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3448
3448
|
}, {}, {
|
|
3449
3449
|
length: 256;
|
|
3450
3450
|
}>;
|
|
3451
|
-
tenantId:
|
|
3451
|
+
tenantId: drizzle_orm_pg_core1458.PgColumn<{
|
|
3452
3452
|
name: "tenant_id";
|
|
3453
3453
|
tableName: "messages";
|
|
3454
3454
|
dataType: "string";
|
|
@@ -3467,7 +3467,7 @@ declare const messages: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3467
3467
|
}, {}, {
|
|
3468
3468
|
length: 256;
|
|
3469
3469
|
}>;
|
|
3470
|
-
id:
|
|
3470
|
+
id: drizzle_orm_pg_core1458.PgColumn<{
|
|
3471
3471
|
name: "id";
|
|
3472
3472
|
tableName: "messages";
|
|
3473
3473
|
dataType: "string";
|
|
@@ -3489,11 +3489,11 @@ declare const messages: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3489
3489
|
};
|
|
3490
3490
|
dialect: "pg";
|
|
3491
3491
|
}>;
|
|
3492
|
-
declare const taskRelations:
|
|
3492
|
+
declare const taskRelations: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
3493
3493
|
name: "task_relations";
|
|
3494
3494
|
schema: undefined;
|
|
3495
3495
|
columns: {
|
|
3496
|
-
createdAt:
|
|
3496
|
+
createdAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
3497
3497
|
name: "created_at";
|
|
3498
3498
|
tableName: "task_relations";
|
|
3499
3499
|
dataType: "string";
|
|
@@ -3510,7 +3510,7 @@ declare const taskRelations: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3510
3510
|
identity: undefined;
|
|
3511
3511
|
generated: undefined;
|
|
3512
3512
|
}, {}, {}>;
|
|
3513
|
-
updatedAt:
|
|
3513
|
+
updatedAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
3514
3514
|
name: "updated_at";
|
|
3515
3515
|
tableName: "task_relations";
|
|
3516
3516
|
dataType: "string";
|
|
@@ -3527,7 +3527,7 @@ declare const taskRelations: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3527
3527
|
identity: undefined;
|
|
3528
3528
|
generated: undefined;
|
|
3529
3529
|
}, {}, {}>;
|
|
3530
|
-
parentTaskId:
|
|
3530
|
+
parentTaskId: drizzle_orm_pg_core1458.PgColumn<{
|
|
3531
3531
|
name: "parent_task_id";
|
|
3532
3532
|
tableName: "task_relations";
|
|
3533
3533
|
dataType: "string";
|
|
@@ -3546,7 +3546,7 @@ declare const taskRelations: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3546
3546
|
}, {}, {
|
|
3547
3547
|
length: 256;
|
|
3548
3548
|
}>;
|
|
3549
|
-
childTaskId:
|
|
3549
|
+
childTaskId: drizzle_orm_pg_core1458.PgColumn<{
|
|
3550
3550
|
name: "child_task_id";
|
|
3551
3551
|
tableName: "task_relations";
|
|
3552
3552
|
dataType: "string";
|
|
@@ -3565,7 +3565,7 @@ declare const taskRelations: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3565
3565
|
}, {}, {
|
|
3566
3566
|
length: 256;
|
|
3567
3567
|
}>;
|
|
3568
|
-
relationType:
|
|
3568
|
+
relationType: drizzle_orm_pg_core1458.PgColumn<{
|
|
3569
3569
|
name: "relation_type";
|
|
3570
3570
|
tableName: "task_relations";
|
|
3571
3571
|
dataType: "string";
|
|
@@ -3584,7 +3584,7 @@ declare const taskRelations: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3584
3584
|
}, {}, {
|
|
3585
3585
|
length: 256;
|
|
3586
3586
|
}>;
|
|
3587
|
-
projectId:
|
|
3587
|
+
projectId: drizzle_orm_pg_core1458.PgColumn<{
|
|
3588
3588
|
name: "project_id";
|
|
3589
3589
|
tableName: "task_relations";
|
|
3590
3590
|
dataType: "string";
|
|
@@ -3603,7 +3603,7 @@ declare const taskRelations: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3603
3603
|
}, {}, {
|
|
3604
3604
|
length: 256;
|
|
3605
3605
|
}>;
|
|
3606
|
-
tenantId:
|
|
3606
|
+
tenantId: drizzle_orm_pg_core1458.PgColumn<{
|
|
3607
3607
|
name: "tenant_id";
|
|
3608
3608
|
tableName: "task_relations";
|
|
3609
3609
|
dataType: "string";
|
|
@@ -3622,7 +3622,7 @@ declare const taskRelations: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3622
3622
|
}, {}, {
|
|
3623
3623
|
length: 256;
|
|
3624
3624
|
}>;
|
|
3625
|
-
id:
|
|
3625
|
+
id: drizzle_orm_pg_core1458.PgColumn<{
|
|
3626
3626
|
name: "id";
|
|
3627
3627
|
tableName: "task_relations";
|
|
3628
3628
|
dataType: "string";
|
|
@@ -3644,11 +3644,11 @@ declare const taskRelations: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3644
3644
|
};
|
|
3645
3645
|
dialect: "pg";
|
|
3646
3646
|
}>;
|
|
3647
|
-
declare const ledgerArtifacts:
|
|
3647
|
+
declare const ledgerArtifacts: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
3648
3648
|
name: "ledger_artifacts";
|
|
3649
3649
|
schema: undefined;
|
|
3650
3650
|
columns: {
|
|
3651
|
-
createdAt:
|
|
3651
|
+
createdAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
3652
3652
|
name: "created_at";
|
|
3653
3653
|
tableName: "ledger_artifacts";
|
|
3654
3654
|
dataType: "string";
|
|
@@ -3665,7 +3665,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3665
3665
|
identity: undefined;
|
|
3666
3666
|
generated: undefined;
|
|
3667
3667
|
}, {}, {}>;
|
|
3668
|
-
updatedAt:
|
|
3668
|
+
updatedAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
3669
3669
|
name: "updated_at";
|
|
3670
3670
|
tableName: "ledger_artifacts";
|
|
3671
3671
|
dataType: "string";
|
|
@@ -3682,7 +3682,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3682
3682
|
identity: undefined;
|
|
3683
3683
|
generated: undefined;
|
|
3684
3684
|
}, {}, {}>;
|
|
3685
|
-
taskId:
|
|
3685
|
+
taskId: drizzle_orm_pg_core1458.PgColumn<{
|
|
3686
3686
|
name: "task_id";
|
|
3687
3687
|
tableName: "ledger_artifacts";
|
|
3688
3688
|
dataType: "string";
|
|
@@ -3701,7 +3701,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3701
3701
|
}, {}, {
|
|
3702
3702
|
length: 256;
|
|
3703
3703
|
}>;
|
|
3704
|
-
toolCallId:
|
|
3704
|
+
toolCallId: drizzle_orm_pg_core1458.PgColumn<{
|
|
3705
3705
|
name: "tool_call_id";
|
|
3706
3706
|
tableName: "ledger_artifacts";
|
|
3707
3707
|
dataType: "string";
|
|
@@ -3720,7 +3720,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3720
3720
|
}, {}, {
|
|
3721
3721
|
length: 256;
|
|
3722
3722
|
}>;
|
|
3723
|
-
contextId:
|
|
3723
|
+
contextId: drizzle_orm_pg_core1458.PgColumn<{
|
|
3724
3724
|
name: "context_id";
|
|
3725
3725
|
tableName: "ledger_artifacts";
|
|
3726
3726
|
dataType: "string";
|
|
@@ -3739,7 +3739,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3739
3739
|
}, {}, {
|
|
3740
3740
|
length: 256;
|
|
3741
3741
|
}>;
|
|
3742
|
-
type:
|
|
3742
|
+
type: drizzle_orm_pg_core1458.PgColumn<{
|
|
3743
3743
|
name: "type";
|
|
3744
3744
|
tableName: "ledger_artifacts";
|
|
3745
3745
|
dataType: "string";
|
|
@@ -3758,7 +3758,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3758
3758
|
}, {}, {
|
|
3759
3759
|
length: 256;
|
|
3760
3760
|
}>;
|
|
3761
|
-
name:
|
|
3761
|
+
name: drizzle_orm_pg_core1458.PgColumn<{
|
|
3762
3762
|
name: "name";
|
|
3763
3763
|
tableName: "ledger_artifacts";
|
|
3764
3764
|
dataType: "string";
|
|
@@ -3777,7 +3777,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3777
3777
|
}, {}, {
|
|
3778
3778
|
length: 256;
|
|
3779
3779
|
}>;
|
|
3780
|
-
description:
|
|
3780
|
+
description: drizzle_orm_pg_core1458.PgColumn<{
|
|
3781
3781
|
name: "description";
|
|
3782
3782
|
tableName: "ledger_artifacts";
|
|
3783
3783
|
dataType: "string";
|
|
@@ -3794,7 +3794,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3794
3794
|
identity: undefined;
|
|
3795
3795
|
generated: undefined;
|
|
3796
3796
|
}, {}, {}>;
|
|
3797
|
-
parts:
|
|
3797
|
+
parts: drizzle_orm_pg_core1458.PgColumn<{
|
|
3798
3798
|
name: "parts";
|
|
3799
3799
|
tableName: "ledger_artifacts";
|
|
3800
3800
|
dataType: "json";
|
|
@@ -3813,7 +3813,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3813
3813
|
}, {}, {
|
|
3814
3814
|
$type: Part[] | null;
|
|
3815
3815
|
}>;
|
|
3816
|
-
metadata:
|
|
3816
|
+
metadata: drizzle_orm_pg_core1458.PgColumn<{
|
|
3817
3817
|
name: "metadata";
|
|
3818
3818
|
tableName: "ledger_artifacts";
|
|
3819
3819
|
dataType: "json";
|
|
@@ -3832,7 +3832,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3832
3832
|
}, {}, {
|
|
3833
3833
|
$type: Record<string, unknown> | null;
|
|
3834
3834
|
}>;
|
|
3835
|
-
summary:
|
|
3835
|
+
summary: drizzle_orm_pg_core1458.PgColumn<{
|
|
3836
3836
|
name: "summary";
|
|
3837
3837
|
tableName: "ledger_artifacts";
|
|
3838
3838
|
dataType: "string";
|
|
@@ -3849,7 +3849,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3849
3849
|
identity: undefined;
|
|
3850
3850
|
generated: undefined;
|
|
3851
3851
|
}, {}, {}>;
|
|
3852
|
-
mime:
|
|
3852
|
+
mime: drizzle_orm_pg_core1458.PgColumn<{
|
|
3853
3853
|
name: "mime";
|
|
3854
3854
|
tableName: "ledger_artifacts";
|
|
3855
3855
|
dataType: "json";
|
|
@@ -3868,7 +3868,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3868
3868
|
}, {}, {
|
|
3869
3869
|
$type: string[] | null;
|
|
3870
3870
|
}>;
|
|
3871
|
-
visibility:
|
|
3871
|
+
visibility: drizzle_orm_pg_core1458.PgColumn<{
|
|
3872
3872
|
name: "visibility";
|
|
3873
3873
|
tableName: "ledger_artifacts";
|
|
3874
3874
|
dataType: "string";
|
|
@@ -3887,7 +3887,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3887
3887
|
}, {}, {
|
|
3888
3888
|
length: 256;
|
|
3889
3889
|
}>;
|
|
3890
|
-
allowedAgents:
|
|
3890
|
+
allowedAgents: drizzle_orm_pg_core1458.PgColumn<{
|
|
3891
3891
|
name: "allowed_agents";
|
|
3892
3892
|
tableName: "ledger_artifacts";
|
|
3893
3893
|
dataType: "json";
|
|
@@ -3906,7 +3906,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3906
3906
|
}, {}, {
|
|
3907
3907
|
$type: string[] | null;
|
|
3908
3908
|
}>;
|
|
3909
|
-
derivedFrom:
|
|
3909
|
+
derivedFrom: drizzle_orm_pg_core1458.PgColumn<{
|
|
3910
3910
|
name: "derived_from";
|
|
3911
3911
|
tableName: "ledger_artifacts";
|
|
3912
3912
|
dataType: "string";
|
|
@@ -3925,7 +3925,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3925
3925
|
}, {}, {
|
|
3926
3926
|
length: 256;
|
|
3927
3927
|
}>;
|
|
3928
|
-
projectId:
|
|
3928
|
+
projectId: drizzle_orm_pg_core1458.PgColumn<{
|
|
3929
3929
|
name: "project_id";
|
|
3930
3930
|
tableName: "ledger_artifacts";
|
|
3931
3931
|
dataType: "string";
|
|
@@ -3944,7 +3944,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3944
3944
|
}, {}, {
|
|
3945
3945
|
length: 256;
|
|
3946
3946
|
}>;
|
|
3947
|
-
tenantId:
|
|
3947
|
+
tenantId: drizzle_orm_pg_core1458.PgColumn<{
|
|
3948
3948
|
name: "tenant_id";
|
|
3949
3949
|
tableName: "ledger_artifacts";
|
|
3950
3950
|
dataType: "string";
|
|
@@ -3963,7 +3963,7 @@ declare const ledgerArtifacts: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3963
3963
|
}, {}, {
|
|
3964
3964
|
length: 256;
|
|
3965
3965
|
}>;
|
|
3966
|
-
id:
|
|
3966
|
+
id: drizzle_orm_pg_core1458.PgColumn<{
|
|
3967
3967
|
name: "id";
|
|
3968
3968
|
tableName: "ledger_artifacts";
|
|
3969
3969
|
dataType: "string";
|
|
@@ -3985,11 +3985,11 @@ declare const ledgerArtifacts: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
3985
3985
|
};
|
|
3986
3986
|
dialect: "pg";
|
|
3987
3987
|
}>;
|
|
3988
|
-
declare const contextCache:
|
|
3988
|
+
declare const contextCache: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
3989
3989
|
name: "context_cache";
|
|
3990
3990
|
schema: undefined;
|
|
3991
3991
|
columns: {
|
|
3992
|
-
createdAt:
|
|
3992
|
+
createdAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
3993
3993
|
name: "created_at";
|
|
3994
3994
|
tableName: "context_cache";
|
|
3995
3995
|
dataType: "string";
|
|
@@ -4006,7 +4006,7 @@ declare const contextCache: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
4006
4006
|
identity: undefined;
|
|
4007
4007
|
generated: undefined;
|
|
4008
4008
|
}, {}, {}>;
|
|
4009
|
-
updatedAt:
|
|
4009
|
+
updatedAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
4010
4010
|
name: "updated_at";
|
|
4011
4011
|
tableName: "context_cache";
|
|
4012
4012
|
dataType: "string";
|
|
@@ -4023,7 +4023,7 @@ declare const contextCache: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
4023
4023
|
identity: undefined;
|
|
4024
4024
|
generated: undefined;
|
|
4025
4025
|
}, {}, {}>;
|
|
4026
|
-
conversationId:
|
|
4026
|
+
conversationId: drizzle_orm_pg_core1458.PgColumn<{
|
|
4027
4027
|
name: "conversation_id";
|
|
4028
4028
|
tableName: "context_cache";
|
|
4029
4029
|
dataType: "string";
|
|
@@ -4042,7 +4042,7 @@ declare const contextCache: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
4042
4042
|
}, {}, {
|
|
4043
4043
|
length: 256;
|
|
4044
4044
|
}>;
|
|
4045
|
-
contextConfigId:
|
|
4045
|
+
contextConfigId: drizzle_orm_pg_core1458.PgColumn<{
|
|
4046
4046
|
name: "context_config_id";
|
|
4047
4047
|
tableName: "context_cache";
|
|
4048
4048
|
dataType: "string";
|
|
@@ -4061,7 +4061,7 @@ declare const contextCache: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
4061
4061
|
}, {}, {
|
|
4062
4062
|
length: 256;
|
|
4063
4063
|
}>;
|
|
4064
|
-
contextVariableKey:
|
|
4064
|
+
contextVariableKey: drizzle_orm_pg_core1458.PgColumn<{
|
|
4065
4065
|
name: "context_variable_key";
|
|
4066
4066
|
tableName: "context_cache";
|
|
4067
4067
|
dataType: "string";
|
|
@@ -4080,7 +4080,7 @@ declare const contextCache: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
4080
4080
|
}, {}, {
|
|
4081
4081
|
length: 256;
|
|
4082
4082
|
}>;
|
|
4083
|
-
ref:
|
|
4083
|
+
ref: drizzle_orm_pg_core1458.PgColumn<{
|
|
4084
4084
|
name: "ref";
|
|
4085
4085
|
tableName: "context_cache";
|
|
4086
4086
|
dataType: "json";
|
|
@@ -4107,7 +4107,7 @@ declare const contextCache: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
4107
4107
|
hash: string;
|
|
4108
4108
|
};
|
|
4109
4109
|
}>;
|
|
4110
|
-
value:
|
|
4110
|
+
value: drizzle_orm_pg_core1458.PgColumn<{
|
|
4111
4111
|
name: "value";
|
|
4112
4112
|
tableName: "context_cache";
|
|
4113
4113
|
dataType: "json";
|
|
@@ -4126,7 +4126,7 @@ declare const contextCache: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
4126
4126
|
}, {}, {
|
|
4127
4127
|
$type: unknown;
|
|
4128
4128
|
}>;
|
|
4129
|
-
requestHash:
|
|
4129
|
+
requestHash: drizzle_orm_pg_core1458.PgColumn<{
|
|
4130
4130
|
name: "request_hash";
|
|
4131
4131
|
tableName: "context_cache";
|
|
4132
4132
|
dataType: "string";
|
|
@@ -4145,7 +4145,7 @@ declare const contextCache: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
4145
4145
|
}, {}, {
|
|
4146
4146
|
length: 256;
|
|
4147
4147
|
}>;
|
|
4148
|
-
fetchedAt:
|
|
4148
|
+
fetchedAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
4149
4149
|
name: "fetched_at";
|
|
4150
4150
|
tableName: "context_cache";
|
|
4151
4151
|
dataType: "string";
|
|
@@ -4162,7 +4162,7 @@ declare const contextCache: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
4162
4162
|
identity: undefined;
|
|
4163
4163
|
generated: undefined;
|
|
4164
4164
|
}, {}, {}>;
|
|
4165
|
-
fetchSource:
|
|
4165
|
+
fetchSource: drizzle_orm_pg_core1458.PgColumn<{
|
|
4166
4166
|
name: "fetch_source";
|
|
4167
4167
|
tableName: "context_cache";
|
|
4168
4168
|
dataType: "string";
|
|
@@ -4181,7 +4181,7 @@ declare const contextCache: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
4181
4181
|
}, {}, {
|
|
4182
4182
|
length: 256;
|
|
4183
4183
|
}>;
|
|
4184
|
-
projectId:
|
|
4184
|
+
projectId: drizzle_orm_pg_core1458.PgColumn<{
|
|
4185
4185
|
name: "project_id";
|
|
4186
4186
|
tableName: "context_cache";
|
|
4187
4187
|
dataType: "string";
|
|
@@ -4200,7 +4200,7 @@ declare const contextCache: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
4200
4200
|
}, {}, {
|
|
4201
4201
|
length: 256;
|
|
4202
4202
|
}>;
|
|
4203
|
-
tenantId:
|
|
4203
|
+
tenantId: drizzle_orm_pg_core1458.PgColumn<{
|
|
4204
4204
|
name: "tenant_id";
|
|
4205
4205
|
tableName: "context_cache";
|
|
4206
4206
|
dataType: "string";
|
|
@@ -4219,7 +4219,7 @@ declare const contextCache: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
4219
4219
|
}, {}, {
|
|
4220
4220
|
length: 256;
|
|
4221
4221
|
}>;
|
|
4222
|
-
id:
|
|
4222
|
+
id: drizzle_orm_pg_core1458.PgColumn<{
|
|
4223
4223
|
name: "id";
|
|
4224
4224
|
tableName: "context_cache";
|
|
4225
4225
|
dataType: "string";
|
|
@@ -4254,11 +4254,11 @@ declare const contextCache: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
4254
4254
|
* datasetRunConfigId (optional: if created from a config),
|
|
4255
4255
|
* evaluationJobConfigId (optional: links to evaluation job created for this run), and timestamps
|
|
4256
4256
|
*/
|
|
4257
|
-
declare const datasetRun:
|
|
4257
|
+
declare const datasetRun: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
4258
4258
|
name: "dataset_run";
|
|
4259
4259
|
schema: undefined;
|
|
4260
4260
|
columns: {
|
|
4261
|
-
createdAt:
|
|
4261
|
+
createdAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
4262
4262
|
name: "created_at";
|
|
4263
4263
|
tableName: "dataset_run";
|
|
4264
4264
|
dataType: "string";
|
|
@@ -4275,7 +4275,7 @@ declare const datasetRun: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
4275
4275
|
identity: undefined;
|
|
4276
4276
|
generated: undefined;
|
|
4277
4277
|
}, {}, {}>;
|
|
4278
|
-
updatedAt:
|
|
4278
|
+
updatedAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
4279
4279
|
name: "updated_at";
|
|
4280
4280
|
tableName: "dataset_run";
|
|
4281
4281
|
dataType: "string";
|
|
@@ -4292,7 +4292,7 @@ declare const datasetRun: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
4292
4292
|
identity: undefined;
|
|
4293
4293
|
generated: undefined;
|
|
4294
4294
|
}, {}, {}>;
|
|
4295
|
-
datasetId:
|
|
4295
|
+
datasetId: drizzle_orm_pg_core1458.PgColumn<{
|
|
4296
4296
|
name: "dataset_id";
|
|
4297
4297
|
tableName: "dataset_run";
|
|
4298
4298
|
dataType: "string";
|
|
@@ -4309,7 +4309,7 @@ declare const datasetRun: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
4309
4309
|
identity: undefined;
|
|
4310
4310
|
generated: undefined;
|
|
4311
4311
|
}, {}, {}>;
|
|
4312
|
-
datasetRunConfigId:
|
|
4312
|
+
datasetRunConfigId: drizzle_orm_pg_core1458.PgColumn<{
|
|
4313
4313
|
name: "dataset_run_config_id";
|
|
4314
4314
|
tableName: "dataset_run";
|
|
4315
4315
|
dataType: "string";
|
|
@@ -4326,7 +4326,7 @@ declare const datasetRun: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
4326
4326
|
identity: undefined;
|
|
4327
4327
|
generated: undefined;
|
|
4328
4328
|
}, {}, {}>;
|
|
4329
|
-
evaluationJobConfigId:
|
|
4329
|
+
evaluationJobConfigId: drizzle_orm_pg_core1458.PgColumn<{
|
|
4330
4330
|
name: "evaluation_job_config_id";
|
|
4331
4331
|
tableName: "dataset_run";
|
|
4332
4332
|
dataType: "string";
|
|
@@ -4343,7 +4343,7 @@ declare const datasetRun: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
4343
4343
|
identity: undefined;
|
|
4344
4344
|
generated: undefined;
|
|
4345
4345
|
}, {}, {}>;
|
|
4346
|
-
ref:
|
|
4346
|
+
ref: drizzle_orm_pg_core1458.PgColumn<{
|
|
4347
4347
|
name: "ref";
|
|
4348
4348
|
tableName: "dataset_run";
|
|
4349
4349
|
dataType: "json";
|
|
@@ -4370,7 +4370,7 @@ declare const datasetRun: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
4370
4370
|
hash: string;
|
|
4371
4371
|
};
|
|
4372
4372
|
}>;
|
|
4373
|
-
projectId:
|
|
4373
|
+
projectId: drizzle_orm_pg_core1458.PgColumn<{
|
|
4374
4374
|
name: "project_id";
|
|
4375
4375
|
tableName: "dataset_run";
|
|
4376
4376
|
dataType: "string";
|
|
@@ -4389,7 +4389,7 @@ declare const datasetRun: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
4389
4389
|
}, {}, {
|
|
4390
4390
|
length: 256;
|
|
4391
4391
|
}>;
|
|
4392
|
-
tenantId:
|
|
4392
|
+
tenantId: drizzle_orm_pg_core1458.PgColumn<{
|
|
4393
4393
|
name: "tenant_id";
|
|
4394
4394
|
tableName: "dataset_run";
|
|
4395
4395
|
dataType: "string";
|
|
@@ -4408,7 +4408,7 @@ declare const datasetRun: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
4408
4408
|
}, {}, {
|
|
4409
4409
|
length: 256;
|
|
4410
4410
|
}>;
|
|
4411
|
-
id:
|
|
4411
|
+
id: drizzle_orm_pg_core1458.PgColumn<{
|
|
4412
4412
|
name: "id";
|
|
4413
4413
|
tableName: "dataset_run";
|
|
4414
4414
|
dataType: "string";
|
|
@@ -4441,11 +4441,11 @@ declare const datasetRun: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
4441
4441
|
* unique constraint on (datasetRunId, conversationId) ensures one conversation per datasetRun,
|
|
4442
4442
|
* and timestamps
|
|
4443
4443
|
*/
|
|
4444
|
-
declare const datasetRunConversationRelations:
|
|
4444
|
+
declare const datasetRunConversationRelations: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
4445
4445
|
name: "dataset_run_conversation_relations";
|
|
4446
4446
|
schema: undefined;
|
|
4447
4447
|
columns: {
|
|
4448
|
-
createdAt:
|
|
4448
|
+
createdAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
4449
4449
|
name: "created_at";
|
|
4450
4450
|
tableName: "dataset_run_conversation_relations";
|
|
4451
4451
|
dataType: "string";
|
|
@@ -4462,7 +4462,7 @@ declare const datasetRunConversationRelations: drizzle_orm_pg_core569.PgTableWit
|
|
|
4462
4462
|
identity: undefined;
|
|
4463
4463
|
generated: undefined;
|
|
4464
4464
|
}, {}, {}>;
|
|
4465
|
-
updatedAt:
|
|
4465
|
+
updatedAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
4466
4466
|
name: "updated_at";
|
|
4467
4467
|
tableName: "dataset_run_conversation_relations";
|
|
4468
4468
|
dataType: "string";
|
|
@@ -4479,7 +4479,7 @@ declare const datasetRunConversationRelations: drizzle_orm_pg_core569.PgTableWit
|
|
|
4479
4479
|
identity: undefined;
|
|
4480
4480
|
generated: undefined;
|
|
4481
4481
|
}, {}, {}>;
|
|
4482
|
-
datasetRunId:
|
|
4482
|
+
datasetRunId: drizzle_orm_pg_core1458.PgColumn<{
|
|
4483
4483
|
name: "dataset_run_id";
|
|
4484
4484
|
tableName: "dataset_run_conversation_relations";
|
|
4485
4485
|
dataType: "string";
|
|
@@ -4496,7 +4496,7 @@ declare const datasetRunConversationRelations: drizzle_orm_pg_core569.PgTableWit
|
|
|
4496
4496
|
identity: undefined;
|
|
4497
4497
|
generated: undefined;
|
|
4498
4498
|
}, {}, {}>;
|
|
4499
|
-
conversationId:
|
|
4499
|
+
conversationId: drizzle_orm_pg_core1458.PgColumn<{
|
|
4500
4500
|
name: "conversation_id";
|
|
4501
4501
|
tableName: "dataset_run_conversation_relations";
|
|
4502
4502
|
dataType: "string";
|
|
@@ -4513,7 +4513,7 @@ declare const datasetRunConversationRelations: drizzle_orm_pg_core569.PgTableWit
|
|
|
4513
4513
|
identity: undefined;
|
|
4514
4514
|
generated: undefined;
|
|
4515
4515
|
}, {}, {}>;
|
|
4516
|
-
datasetItemId:
|
|
4516
|
+
datasetItemId: drizzle_orm_pg_core1458.PgColumn<{
|
|
4517
4517
|
name: "dataset_item_id";
|
|
4518
4518
|
tableName: "dataset_run_conversation_relations";
|
|
4519
4519
|
dataType: "string";
|
|
@@ -4530,7 +4530,7 @@ declare const datasetRunConversationRelations: drizzle_orm_pg_core569.PgTableWit
|
|
|
4530
4530
|
identity: undefined;
|
|
4531
4531
|
generated: undefined;
|
|
4532
4532
|
}, {}, {}>;
|
|
4533
|
-
projectId:
|
|
4533
|
+
projectId: drizzle_orm_pg_core1458.PgColumn<{
|
|
4534
4534
|
name: "project_id";
|
|
4535
4535
|
tableName: "dataset_run_conversation_relations";
|
|
4536
4536
|
dataType: "string";
|
|
@@ -4549,7 +4549,7 @@ declare const datasetRunConversationRelations: drizzle_orm_pg_core569.PgTableWit
|
|
|
4549
4549
|
}, {}, {
|
|
4550
4550
|
length: 256;
|
|
4551
4551
|
}>;
|
|
4552
|
-
tenantId:
|
|
4552
|
+
tenantId: drizzle_orm_pg_core1458.PgColumn<{
|
|
4553
4553
|
name: "tenant_id";
|
|
4554
4554
|
tableName: "dataset_run_conversation_relations";
|
|
4555
4555
|
dataType: "string";
|
|
@@ -4568,7 +4568,7 @@ declare const datasetRunConversationRelations: drizzle_orm_pg_core569.PgTableWit
|
|
|
4568
4568
|
}, {}, {
|
|
4569
4569
|
length: 256;
|
|
4570
4570
|
}>;
|
|
4571
|
-
id:
|
|
4571
|
+
id: drizzle_orm_pg_core1458.PgColumn<{
|
|
4572
4572
|
name: "id";
|
|
4573
4573
|
tableName: "dataset_run_conversation_relations";
|
|
4574
4574
|
dataType: "string";
|
|
@@ -4601,11 +4601,11 @@ declare const datasetRunConversationRelations: drizzle_orm_pg_core569.PgTableWit
|
|
|
4601
4601
|
* evaluationRunConfigId (optional: if created from a run config),
|
|
4602
4602
|
* and timestamps
|
|
4603
4603
|
*/
|
|
4604
|
-
declare const evaluationRun:
|
|
4604
|
+
declare const evaluationRun: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
4605
4605
|
name: "evaluation_run";
|
|
4606
4606
|
schema: undefined;
|
|
4607
4607
|
columns: {
|
|
4608
|
-
createdAt:
|
|
4608
|
+
createdAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
4609
4609
|
name: "created_at";
|
|
4610
4610
|
tableName: "evaluation_run";
|
|
4611
4611
|
dataType: "string";
|
|
@@ -4622,7 +4622,7 @@ declare const evaluationRun: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
4622
4622
|
identity: undefined;
|
|
4623
4623
|
generated: undefined;
|
|
4624
4624
|
}, {}, {}>;
|
|
4625
|
-
updatedAt:
|
|
4625
|
+
updatedAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
4626
4626
|
name: "updated_at";
|
|
4627
4627
|
tableName: "evaluation_run";
|
|
4628
4628
|
dataType: "string";
|
|
@@ -4639,7 +4639,7 @@ declare const evaluationRun: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
4639
4639
|
identity: undefined;
|
|
4640
4640
|
generated: undefined;
|
|
4641
4641
|
}, {}, {}>;
|
|
4642
|
-
evaluationJobConfigId:
|
|
4642
|
+
evaluationJobConfigId: drizzle_orm_pg_core1458.PgColumn<{
|
|
4643
4643
|
name: "evaluation_job_config_id";
|
|
4644
4644
|
tableName: "evaluation_run";
|
|
4645
4645
|
dataType: "string";
|
|
@@ -4656,7 +4656,7 @@ declare const evaluationRun: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
4656
4656
|
identity: undefined;
|
|
4657
4657
|
generated: undefined;
|
|
4658
4658
|
}, {}, {}>;
|
|
4659
|
-
evaluationRunConfigId:
|
|
4659
|
+
evaluationRunConfigId: drizzle_orm_pg_core1458.PgColumn<{
|
|
4660
4660
|
name: "evaluation_run_config_id";
|
|
4661
4661
|
tableName: "evaluation_run";
|
|
4662
4662
|
dataType: "string";
|
|
@@ -4673,7 +4673,7 @@ declare const evaluationRun: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
4673
4673
|
identity: undefined;
|
|
4674
4674
|
generated: undefined;
|
|
4675
4675
|
}, {}, {}>;
|
|
4676
|
-
ref:
|
|
4676
|
+
ref: drizzle_orm_pg_core1458.PgColumn<{
|
|
4677
4677
|
name: "ref";
|
|
4678
4678
|
tableName: "evaluation_run";
|
|
4679
4679
|
dataType: "json";
|
|
@@ -4700,7 +4700,7 @@ declare const evaluationRun: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
4700
4700
|
hash: string;
|
|
4701
4701
|
};
|
|
4702
4702
|
}>;
|
|
4703
|
-
projectId:
|
|
4703
|
+
projectId: drizzle_orm_pg_core1458.PgColumn<{
|
|
4704
4704
|
name: "project_id";
|
|
4705
4705
|
tableName: "evaluation_run";
|
|
4706
4706
|
dataType: "string";
|
|
@@ -4719,7 +4719,7 @@ declare const evaluationRun: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
4719
4719
|
}, {}, {
|
|
4720
4720
|
length: 256;
|
|
4721
4721
|
}>;
|
|
4722
|
-
tenantId:
|
|
4722
|
+
tenantId: drizzle_orm_pg_core1458.PgColumn<{
|
|
4723
4723
|
name: "tenant_id";
|
|
4724
4724
|
tableName: "evaluation_run";
|
|
4725
4725
|
dataType: "string";
|
|
@@ -4738,7 +4738,7 @@ declare const evaluationRun: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
4738
4738
|
}, {}, {
|
|
4739
4739
|
length: 256;
|
|
4740
4740
|
}>;
|
|
4741
|
-
id:
|
|
4741
|
+
id: drizzle_orm_pg_core1458.PgColumn<{
|
|
4742
4742
|
name: "id";
|
|
4743
4743
|
tableName: "evaluation_run";
|
|
4744
4744
|
dataType: "string";
|
|
@@ -4769,11 +4769,11 @@ declare const evaluationRun: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
4769
4769
|
* evaluationRunId (optional, links to evaluationRun),
|
|
4770
4770
|
* output (evaluation result as MessageContent), and timestamps
|
|
4771
4771
|
*/
|
|
4772
|
-
declare const evaluationResult:
|
|
4772
|
+
declare const evaluationResult: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
4773
4773
|
name: "evaluation_result";
|
|
4774
4774
|
schema: undefined;
|
|
4775
4775
|
columns: {
|
|
4776
|
-
createdAt:
|
|
4776
|
+
createdAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
4777
4777
|
name: "created_at";
|
|
4778
4778
|
tableName: "evaluation_result";
|
|
4779
4779
|
dataType: "string";
|
|
@@ -4790,7 +4790,7 @@ declare const evaluationResult: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
4790
4790
|
identity: undefined;
|
|
4791
4791
|
generated: undefined;
|
|
4792
4792
|
}, {}, {}>;
|
|
4793
|
-
updatedAt:
|
|
4793
|
+
updatedAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
4794
4794
|
name: "updated_at";
|
|
4795
4795
|
tableName: "evaluation_result";
|
|
4796
4796
|
dataType: "string";
|
|
@@ -4807,7 +4807,7 @@ declare const evaluationResult: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
4807
4807
|
identity: undefined;
|
|
4808
4808
|
generated: undefined;
|
|
4809
4809
|
}, {}, {}>;
|
|
4810
|
-
conversationId:
|
|
4810
|
+
conversationId: drizzle_orm_pg_core1458.PgColumn<{
|
|
4811
4811
|
name: "conversation_id";
|
|
4812
4812
|
tableName: "evaluation_result";
|
|
4813
4813
|
dataType: "string";
|
|
@@ -4824,7 +4824,7 @@ declare const evaluationResult: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
4824
4824
|
identity: undefined;
|
|
4825
4825
|
generated: undefined;
|
|
4826
4826
|
}, {}, {}>;
|
|
4827
|
-
evaluatorId:
|
|
4827
|
+
evaluatorId: drizzle_orm_pg_core1458.PgColumn<{
|
|
4828
4828
|
name: "evaluator_id";
|
|
4829
4829
|
tableName: "evaluation_result";
|
|
4830
4830
|
dataType: "string";
|
|
@@ -4841,7 +4841,7 @@ declare const evaluationResult: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
4841
4841
|
identity: undefined;
|
|
4842
4842
|
generated: undefined;
|
|
4843
4843
|
}, {}, {}>;
|
|
4844
|
-
evaluationRunId:
|
|
4844
|
+
evaluationRunId: drizzle_orm_pg_core1458.PgColumn<{
|
|
4845
4845
|
name: "evaluation_run_id";
|
|
4846
4846
|
tableName: "evaluation_result";
|
|
4847
4847
|
dataType: "string";
|
|
@@ -4858,7 +4858,7 @@ declare const evaluationResult: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
4858
4858
|
identity: undefined;
|
|
4859
4859
|
generated: undefined;
|
|
4860
4860
|
}, {}, {}>;
|
|
4861
|
-
output:
|
|
4861
|
+
output: drizzle_orm_pg_core1458.PgColumn<{
|
|
4862
4862
|
name: "output";
|
|
4863
4863
|
tableName: "evaluation_result";
|
|
4864
4864
|
dataType: "json";
|
|
@@ -4877,7 +4877,7 @@ declare const evaluationResult: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
4877
4877
|
}, {}, {
|
|
4878
4878
|
$type: MessageContent;
|
|
4879
4879
|
}>;
|
|
4880
|
-
projectId:
|
|
4880
|
+
projectId: drizzle_orm_pg_core1458.PgColumn<{
|
|
4881
4881
|
name: "project_id";
|
|
4882
4882
|
tableName: "evaluation_result";
|
|
4883
4883
|
dataType: "string";
|
|
@@ -4896,7 +4896,7 @@ declare const evaluationResult: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
4896
4896
|
}, {}, {
|
|
4897
4897
|
length: 256;
|
|
4898
4898
|
}>;
|
|
4899
|
-
tenantId:
|
|
4899
|
+
tenantId: drizzle_orm_pg_core1458.PgColumn<{
|
|
4900
4900
|
name: "tenant_id";
|
|
4901
4901
|
tableName: "evaluation_result";
|
|
4902
4902
|
dataType: "string";
|
|
@@ -4915,7 +4915,7 @@ declare const evaluationResult: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
4915
4915
|
}, {}, {
|
|
4916
4916
|
length: 256;
|
|
4917
4917
|
}>;
|
|
4918
|
-
id:
|
|
4918
|
+
id: drizzle_orm_pg_core1458.PgColumn<{
|
|
4919
4919
|
name: "id";
|
|
4920
4920
|
tableName: "evaluation_result";
|
|
4921
4921
|
dataType: "string";
|
|
@@ -4937,11 +4937,11 @@ declare const evaluationResult: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
4937
4937
|
};
|
|
4938
4938
|
dialect: "pg";
|
|
4939
4939
|
}>;
|
|
4940
|
-
declare const userProfile:
|
|
4940
|
+
declare const userProfile: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
4941
4941
|
name: "user_profile";
|
|
4942
4942
|
schema: undefined;
|
|
4943
4943
|
columns: {
|
|
4944
|
-
createdAt:
|
|
4944
|
+
createdAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
4945
4945
|
name: "created_at";
|
|
4946
4946
|
tableName: "user_profile";
|
|
4947
4947
|
dataType: "string";
|
|
@@ -4958,7 +4958,7 @@ declare const userProfile: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
4958
4958
|
identity: undefined;
|
|
4959
4959
|
generated: undefined;
|
|
4960
4960
|
}, {}, {}>;
|
|
4961
|
-
updatedAt:
|
|
4961
|
+
updatedAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
4962
4962
|
name: "updated_at";
|
|
4963
4963
|
tableName: "user_profile";
|
|
4964
4964
|
dataType: "string";
|
|
@@ -4975,7 +4975,7 @@ declare const userProfile: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
4975
4975
|
identity: undefined;
|
|
4976
4976
|
generated: undefined;
|
|
4977
4977
|
}, {}, {}>;
|
|
4978
|
-
id:
|
|
4978
|
+
id: drizzle_orm_pg_core1458.PgColumn<{
|
|
4979
4979
|
name: "id";
|
|
4980
4980
|
tableName: "user_profile";
|
|
4981
4981
|
dataType: "string";
|
|
@@ -4992,7 +4992,7 @@ declare const userProfile: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
4992
4992
|
identity: undefined;
|
|
4993
4993
|
generated: undefined;
|
|
4994
4994
|
}, {}, {}>;
|
|
4995
|
-
userId:
|
|
4995
|
+
userId: drizzle_orm_pg_core1458.PgColumn<{
|
|
4996
4996
|
name: "user_id";
|
|
4997
4997
|
tableName: "user_profile";
|
|
4998
4998
|
dataType: "string";
|
|
@@ -5009,7 +5009,7 @@ declare const userProfile: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
5009
5009
|
identity: undefined;
|
|
5010
5010
|
generated: undefined;
|
|
5011
5011
|
}, {}, {}>;
|
|
5012
|
-
timezone:
|
|
5012
|
+
timezone: drizzle_orm_pg_core1458.PgColumn<{
|
|
5013
5013
|
name: "timezone";
|
|
5014
5014
|
tableName: "user_profile";
|
|
5015
5015
|
dataType: "string";
|
|
@@ -5026,7 +5026,7 @@ declare const userProfile: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
5026
5026
|
identity: undefined;
|
|
5027
5027
|
generated: undefined;
|
|
5028
5028
|
}, {}, {}>;
|
|
5029
|
-
attributes:
|
|
5029
|
+
attributes: drizzle_orm_pg_core1458.PgColumn<{
|
|
5030
5030
|
name: "attributes";
|
|
5031
5031
|
tableName: "user_profile";
|
|
5032
5032
|
dataType: "json";
|
|
@@ -5048,42 +5048,42 @@ declare const userProfile: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
5048
5048
|
};
|
|
5049
5049
|
dialect: "pg";
|
|
5050
5050
|
}>;
|
|
5051
|
-
declare const userProfileRelations:
|
|
5052
|
-
user:
|
|
5051
|
+
declare const userProfileRelations: drizzle_orm20.Relations<"user_profile", {
|
|
5052
|
+
user: drizzle_orm20.One<"user", true>;
|
|
5053
5053
|
}>;
|
|
5054
5054
|
type GenerationType = (typeof USAGE_GENERATION_TYPES)[number];
|
|
5055
|
-
declare const conversationsRelations:
|
|
5056
|
-
messages:
|
|
5055
|
+
declare const conversationsRelations: drizzle_orm20.Relations<"conversations", {
|
|
5056
|
+
messages: drizzle_orm20.Many<"messages">;
|
|
5057
5057
|
}>;
|
|
5058
|
-
declare const messagesRelations:
|
|
5059
|
-
conversation:
|
|
5060
|
-
task:
|
|
5061
|
-
parentMessage:
|
|
5062
|
-
childMessages:
|
|
5058
|
+
declare const messagesRelations: drizzle_orm20.Relations<"messages", {
|
|
5059
|
+
conversation: drizzle_orm20.One<"conversations", true>;
|
|
5060
|
+
task: drizzle_orm20.One<"tasks", false>;
|
|
5061
|
+
parentMessage: drizzle_orm20.One<"messages", false>;
|
|
5062
|
+
childMessages: drizzle_orm20.Many<"messages">;
|
|
5063
5063
|
}>;
|
|
5064
|
-
declare const tasksRelations:
|
|
5065
|
-
messages:
|
|
5066
|
-
ledgerArtifacts:
|
|
5067
|
-
parentRelations:
|
|
5068
|
-
childRelations:
|
|
5064
|
+
declare const tasksRelations: drizzle_orm20.Relations<"tasks", {
|
|
5065
|
+
messages: drizzle_orm20.Many<"messages">;
|
|
5066
|
+
ledgerArtifacts: drizzle_orm20.Many<"ledger_artifacts">;
|
|
5067
|
+
parentRelations: drizzle_orm20.Many<"task_relations">;
|
|
5068
|
+
childRelations: drizzle_orm20.Many<"task_relations">;
|
|
5069
5069
|
}>;
|
|
5070
|
-
declare const taskRelationsRelations:
|
|
5071
|
-
parentTask:
|
|
5072
|
-
childTask:
|
|
5070
|
+
declare const taskRelationsRelations: drizzle_orm20.Relations<"task_relations", {
|
|
5071
|
+
parentTask: drizzle_orm20.One<"tasks", true>;
|
|
5072
|
+
childTask: drizzle_orm20.One<"tasks", true>;
|
|
5073
5073
|
}>;
|
|
5074
|
-
declare const ledgerArtifactsRelations:
|
|
5075
|
-
task:
|
|
5074
|
+
declare const ledgerArtifactsRelations: drizzle_orm20.Relations<"ledger_artifacts", {
|
|
5075
|
+
task: drizzle_orm20.One<"tasks", true>;
|
|
5076
5076
|
}>;
|
|
5077
5077
|
/**
|
|
5078
5078
|
* Tracks GitHub App installations linked to tenants.
|
|
5079
5079
|
* One tenant can have multiple installations (e.g., multiple orgs).
|
|
5080
5080
|
* The installation_id is the GitHub-assigned ID, unique across all GitHub.
|
|
5081
5081
|
*/
|
|
5082
|
-
declare const workAppGitHubInstallations:
|
|
5082
|
+
declare const workAppGitHubInstallations: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
5083
5083
|
name: "work_app_github_installations";
|
|
5084
5084
|
schema: undefined;
|
|
5085
5085
|
columns: {
|
|
5086
|
-
createdAt:
|
|
5086
|
+
createdAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
5087
5087
|
name: "created_at";
|
|
5088
5088
|
tableName: "work_app_github_installations";
|
|
5089
5089
|
dataType: "string";
|
|
@@ -5100,7 +5100,7 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core569.PgTableWithColu
|
|
|
5100
5100
|
identity: undefined;
|
|
5101
5101
|
generated: undefined;
|
|
5102
5102
|
}, {}, {}>;
|
|
5103
|
-
updatedAt:
|
|
5103
|
+
updatedAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
5104
5104
|
name: "updated_at";
|
|
5105
5105
|
tableName: "work_app_github_installations";
|
|
5106
5106
|
dataType: "string";
|
|
@@ -5117,7 +5117,7 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core569.PgTableWithColu
|
|
|
5117
5117
|
identity: undefined;
|
|
5118
5118
|
generated: undefined;
|
|
5119
5119
|
}, {}, {}>;
|
|
5120
|
-
installationId:
|
|
5120
|
+
installationId: drizzle_orm_pg_core1458.PgColumn<{
|
|
5121
5121
|
name: "installation_id";
|
|
5122
5122
|
tableName: "work_app_github_installations";
|
|
5123
5123
|
dataType: "string";
|
|
@@ -5134,7 +5134,7 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core569.PgTableWithColu
|
|
|
5134
5134
|
identity: undefined;
|
|
5135
5135
|
generated: undefined;
|
|
5136
5136
|
}, {}, {}>;
|
|
5137
|
-
accountLogin:
|
|
5137
|
+
accountLogin: drizzle_orm_pg_core1458.PgColumn<{
|
|
5138
5138
|
name: "account_login";
|
|
5139
5139
|
tableName: "work_app_github_installations";
|
|
5140
5140
|
dataType: "string";
|
|
@@ -5153,7 +5153,7 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core569.PgTableWithColu
|
|
|
5153
5153
|
}, {}, {
|
|
5154
5154
|
length: 256;
|
|
5155
5155
|
}>;
|
|
5156
|
-
accountId:
|
|
5156
|
+
accountId: drizzle_orm_pg_core1458.PgColumn<{
|
|
5157
5157
|
name: "account_id";
|
|
5158
5158
|
tableName: "work_app_github_installations";
|
|
5159
5159
|
dataType: "string";
|
|
@@ -5170,7 +5170,7 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core569.PgTableWithColu
|
|
|
5170
5170
|
identity: undefined;
|
|
5171
5171
|
generated: undefined;
|
|
5172
5172
|
}, {}, {}>;
|
|
5173
|
-
accountType:
|
|
5173
|
+
accountType: drizzle_orm_pg_core1458.PgColumn<{
|
|
5174
5174
|
name: "account_type";
|
|
5175
5175
|
tableName: "work_app_github_installations";
|
|
5176
5176
|
dataType: "string";
|
|
@@ -5190,7 +5190,7 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core569.PgTableWithColu
|
|
|
5190
5190
|
length: 20;
|
|
5191
5191
|
$type: "Organization" | "User";
|
|
5192
5192
|
}>;
|
|
5193
|
-
status:
|
|
5193
|
+
status: drizzle_orm_pg_core1458.PgColumn<{
|
|
5194
5194
|
name: "status";
|
|
5195
5195
|
tableName: "work_app_github_installations";
|
|
5196
5196
|
dataType: "string";
|
|
@@ -5210,7 +5210,7 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core569.PgTableWithColu
|
|
|
5210
5210
|
length: 20;
|
|
5211
5211
|
$type: "pending" | "active" | "suspended" | "disconnected";
|
|
5212
5212
|
}>;
|
|
5213
|
-
tenantId:
|
|
5213
|
+
tenantId: drizzle_orm_pg_core1458.PgColumn<{
|
|
5214
5214
|
name: "tenant_id";
|
|
5215
5215
|
tableName: "work_app_github_installations";
|
|
5216
5216
|
dataType: "string";
|
|
@@ -5229,7 +5229,7 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core569.PgTableWithColu
|
|
|
5229
5229
|
}, {}, {
|
|
5230
5230
|
length: 256;
|
|
5231
5231
|
}>;
|
|
5232
|
-
id:
|
|
5232
|
+
id: drizzle_orm_pg_core1458.PgColumn<{
|
|
5233
5233
|
name: "id";
|
|
5234
5234
|
tableName: "work_app_github_installations";
|
|
5235
5235
|
dataType: "string";
|
|
@@ -5256,11 +5256,11 @@ declare const workAppGitHubInstallations: drizzle_orm_pg_core569.PgTableWithColu
|
|
|
5256
5256
|
* These are synced from GitHub when the app is installed or updated.
|
|
5257
5257
|
* The repository_id is the GitHub-assigned ID, unique across all GitHub.
|
|
5258
5258
|
*/
|
|
5259
|
-
declare const workAppGitHubRepositories:
|
|
5259
|
+
declare const workAppGitHubRepositories: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
5260
5260
|
name: "work_app_github_repositories";
|
|
5261
5261
|
schema: undefined;
|
|
5262
5262
|
columns: {
|
|
5263
|
-
createdAt:
|
|
5263
|
+
createdAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
5264
5264
|
name: "created_at";
|
|
5265
5265
|
tableName: "work_app_github_repositories";
|
|
5266
5266
|
dataType: "string";
|
|
@@ -5277,7 +5277,7 @@ declare const workAppGitHubRepositories: drizzle_orm_pg_core569.PgTableWithColum
|
|
|
5277
5277
|
identity: undefined;
|
|
5278
5278
|
generated: undefined;
|
|
5279
5279
|
}, {}, {}>;
|
|
5280
|
-
updatedAt:
|
|
5280
|
+
updatedAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
5281
5281
|
name: "updated_at";
|
|
5282
5282
|
tableName: "work_app_github_repositories";
|
|
5283
5283
|
dataType: "string";
|
|
@@ -5294,7 +5294,7 @@ declare const workAppGitHubRepositories: drizzle_orm_pg_core569.PgTableWithColum
|
|
|
5294
5294
|
identity: undefined;
|
|
5295
5295
|
generated: undefined;
|
|
5296
5296
|
}, {}, {}>;
|
|
5297
|
-
id:
|
|
5297
|
+
id: drizzle_orm_pg_core1458.PgColumn<{
|
|
5298
5298
|
name: "id";
|
|
5299
5299
|
tableName: "work_app_github_repositories";
|
|
5300
5300
|
dataType: "string";
|
|
@@ -5313,7 +5313,7 @@ declare const workAppGitHubRepositories: drizzle_orm_pg_core569.PgTableWithColum
|
|
|
5313
5313
|
}, {}, {
|
|
5314
5314
|
length: 256;
|
|
5315
5315
|
}>;
|
|
5316
|
-
installationDbId:
|
|
5316
|
+
installationDbId: drizzle_orm_pg_core1458.PgColumn<{
|
|
5317
5317
|
name: "installation_db_id";
|
|
5318
5318
|
tableName: "work_app_github_repositories";
|
|
5319
5319
|
dataType: "string";
|
|
@@ -5332,7 +5332,7 @@ declare const workAppGitHubRepositories: drizzle_orm_pg_core569.PgTableWithColum
|
|
|
5332
5332
|
}, {}, {
|
|
5333
5333
|
length: 256;
|
|
5334
5334
|
}>;
|
|
5335
|
-
repositoryId:
|
|
5335
|
+
repositoryId: drizzle_orm_pg_core1458.PgColumn<{
|
|
5336
5336
|
name: "repository_id";
|
|
5337
5337
|
tableName: "work_app_github_repositories";
|
|
5338
5338
|
dataType: "string";
|
|
@@ -5349,7 +5349,7 @@ declare const workAppGitHubRepositories: drizzle_orm_pg_core569.PgTableWithColum
|
|
|
5349
5349
|
identity: undefined;
|
|
5350
5350
|
generated: undefined;
|
|
5351
5351
|
}, {}, {}>;
|
|
5352
|
-
repositoryName:
|
|
5352
|
+
repositoryName: drizzle_orm_pg_core1458.PgColumn<{
|
|
5353
5353
|
name: "repository_name";
|
|
5354
5354
|
tableName: "work_app_github_repositories";
|
|
5355
5355
|
dataType: "string";
|
|
@@ -5368,7 +5368,7 @@ declare const workAppGitHubRepositories: drizzle_orm_pg_core569.PgTableWithColum
|
|
|
5368
5368
|
}, {}, {
|
|
5369
5369
|
length: 256;
|
|
5370
5370
|
}>;
|
|
5371
|
-
repositoryFullName:
|
|
5371
|
+
repositoryFullName: drizzle_orm_pg_core1458.PgColumn<{
|
|
5372
5372
|
name: "repository_full_name";
|
|
5373
5373
|
tableName: "work_app_github_repositories";
|
|
5374
5374
|
dataType: "string";
|
|
@@ -5387,7 +5387,7 @@ declare const workAppGitHubRepositories: drizzle_orm_pg_core569.PgTableWithColum
|
|
|
5387
5387
|
}, {}, {
|
|
5388
5388
|
length: 512;
|
|
5389
5389
|
}>;
|
|
5390
|
-
private:
|
|
5390
|
+
private: drizzle_orm_pg_core1458.PgColumn<{
|
|
5391
5391
|
name: "private";
|
|
5392
5392
|
tableName: "work_app_github_repositories";
|
|
5393
5393
|
dataType: "boolean";
|
|
@@ -5415,11 +5415,11 @@ declare const workAppGitHubRepositories: drizzle_orm_pg_core569.PgTableWithColum
|
|
|
5415
5415
|
* (cross-schema, no FK constraint for project). tenant_id is included because
|
|
5416
5416
|
* project IDs are only unique within a tenant.
|
|
5417
5417
|
*/
|
|
5418
|
-
declare const workAppGitHubProjectRepositoryAccess:
|
|
5418
|
+
declare const workAppGitHubProjectRepositoryAccess: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
5419
5419
|
name: "work_app_github_project_repository_access";
|
|
5420
5420
|
schema: undefined;
|
|
5421
5421
|
columns: {
|
|
5422
|
-
createdAt:
|
|
5422
|
+
createdAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
5423
5423
|
name: "created_at";
|
|
5424
5424
|
tableName: "work_app_github_project_repository_access";
|
|
5425
5425
|
dataType: "string";
|
|
@@ -5436,7 +5436,7 @@ declare const workAppGitHubProjectRepositoryAccess: drizzle_orm_pg_core569.PgTab
|
|
|
5436
5436
|
identity: undefined;
|
|
5437
5437
|
generated: undefined;
|
|
5438
5438
|
}, {}, {}>;
|
|
5439
|
-
updatedAt:
|
|
5439
|
+
updatedAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
5440
5440
|
name: "updated_at";
|
|
5441
5441
|
tableName: "work_app_github_project_repository_access";
|
|
5442
5442
|
dataType: "string";
|
|
@@ -5453,7 +5453,7 @@ declare const workAppGitHubProjectRepositoryAccess: drizzle_orm_pg_core569.PgTab
|
|
|
5453
5453
|
identity: undefined;
|
|
5454
5454
|
generated: undefined;
|
|
5455
5455
|
}, {}, {}>;
|
|
5456
|
-
repositoryDbId:
|
|
5456
|
+
repositoryDbId: drizzle_orm_pg_core1458.PgColumn<{
|
|
5457
5457
|
name: "repository_db_id";
|
|
5458
5458
|
tableName: "work_app_github_project_repository_access";
|
|
5459
5459
|
dataType: "string";
|
|
@@ -5472,7 +5472,7 @@ declare const workAppGitHubProjectRepositoryAccess: drizzle_orm_pg_core569.PgTab
|
|
|
5472
5472
|
}, {}, {
|
|
5473
5473
|
length: 256;
|
|
5474
5474
|
}>;
|
|
5475
|
-
projectId:
|
|
5475
|
+
projectId: drizzle_orm_pg_core1458.PgColumn<{
|
|
5476
5476
|
name: "project_id";
|
|
5477
5477
|
tableName: "work_app_github_project_repository_access";
|
|
5478
5478
|
dataType: "string";
|
|
@@ -5491,7 +5491,7 @@ declare const workAppGitHubProjectRepositoryAccess: drizzle_orm_pg_core569.PgTab
|
|
|
5491
5491
|
}, {}, {
|
|
5492
5492
|
length: 256;
|
|
5493
5493
|
}>;
|
|
5494
|
-
tenantId:
|
|
5494
|
+
tenantId: drizzle_orm_pg_core1458.PgColumn<{
|
|
5495
5495
|
name: "tenant_id";
|
|
5496
5496
|
tableName: "work_app_github_project_repository_access";
|
|
5497
5497
|
dataType: "string";
|
|
@@ -5510,7 +5510,7 @@ declare const workAppGitHubProjectRepositoryAccess: drizzle_orm_pg_core569.PgTab
|
|
|
5510
5510
|
}, {}, {
|
|
5511
5511
|
length: 256;
|
|
5512
5512
|
}>;
|
|
5513
|
-
id:
|
|
5513
|
+
id: drizzle_orm_pg_core1458.PgColumn<{
|
|
5514
5514
|
name: "id";
|
|
5515
5515
|
tableName: "work_app_github_project_repository_access";
|
|
5516
5516
|
dataType: "string";
|
|
@@ -5539,11 +5539,11 @@ declare const workAppGitHubProjectRepositoryAccess: drizzle_orm_pg_core569.PgTab
|
|
|
5539
5539
|
* (cross-schema, no FK constraint). These are denormalized here so all GitHub access
|
|
5540
5540
|
* info can be queried from PostgreSQL alone.
|
|
5541
5541
|
*/
|
|
5542
|
-
declare const workAppGitHubMcpToolRepositoryAccess:
|
|
5542
|
+
declare const workAppGitHubMcpToolRepositoryAccess: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
5543
5543
|
name: "work_app_github_mcp_tool_repository_access";
|
|
5544
5544
|
schema: undefined;
|
|
5545
5545
|
columns: {
|
|
5546
|
-
createdAt:
|
|
5546
|
+
createdAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
5547
5547
|
name: "created_at";
|
|
5548
5548
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
5549
5549
|
dataType: "string";
|
|
@@ -5560,7 +5560,7 @@ declare const workAppGitHubMcpToolRepositoryAccess: drizzle_orm_pg_core569.PgTab
|
|
|
5560
5560
|
identity: undefined;
|
|
5561
5561
|
generated: undefined;
|
|
5562
5562
|
}, {}, {}>;
|
|
5563
|
-
updatedAt:
|
|
5563
|
+
updatedAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
5564
5564
|
name: "updated_at";
|
|
5565
5565
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
5566
5566
|
dataType: "string";
|
|
@@ -5577,7 +5577,7 @@ declare const workAppGitHubMcpToolRepositoryAccess: drizzle_orm_pg_core569.PgTab
|
|
|
5577
5577
|
identity: undefined;
|
|
5578
5578
|
generated: undefined;
|
|
5579
5579
|
}, {}, {}>;
|
|
5580
|
-
toolId:
|
|
5580
|
+
toolId: drizzle_orm_pg_core1458.PgColumn<{
|
|
5581
5581
|
name: "tool_id";
|
|
5582
5582
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
5583
5583
|
dataType: "string";
|
|
@@ -5596,7 +5596,7 @@ declare const workAppGitHubMcpToolRepositoryAccess: drizzle_orm_pg_core569.PgTab
|
|
|
5596
5596
|
}, {}, {
|
|
5597
5597
|
length: 256;
|
|
5598
5598
|
}>;
|
|
5599
|
-
repositoryDbId:
|
|
5599
|
+
repositoryDbId: drizzle_orm_pg_core1458.PgColumn<{
|
|
5600
5600
|
name: "repository_db_id";
|
|
5601
5601
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
5602
5602
|
dataType: "string";
|
|
@@ -5615,7 +5615,7 @@ declare const workAppGitHubMcpToolRepositoryAccess: drizzle_orm_pg_core569.PgTab
|
|
|
5615
5615
|
}, {}, {
|
|
5616
5616
|
length: 256;
|
|
5617
5617
|
}>;
|
|
5618
|
-
projectId:
|
|
5618
|
+
projectId: drizzle_orm_pg_core1458.PgColumn<{
|
|
5619
5619
|
name: "project_id";
|
|
5620
5620
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
5621
5621
|
dataType: "string";
|
|
@@ -5634,7 +5634,7 @@ declare const workAppGitHubMcpToolRepositoryAccess: drizzle_orm_pg_core569.PgTab
|
|
|
5634
5634
|
}, {}, {
|
|
5635
5635
|
length: 256;
|
|
5636
5636
|
}>;
|
|
5637
|
-
tenantId:
|
|
5637
|
+
tenantId: drizzle_orm_pg_core1458.PgColumn<{
|
|
5638
5638
|
name: "tenant_id";
|
|
5639
5639
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
5640
5640
|
dataType: "string";
|
|
@@ -5653,7 +5653,7 @@ declare const workAppGitHubMcpToolRepositoryAccess: drizzle_orm_pg_core569.PgTab
|
|
|
5653
5653
|
}, {}, {
|
|
5654
5654
|
length: 256;
|
|
5655
5655
|
}>;
|
|
5656
|
-
id:
|
|
5656
|
+
id: drizzle_orm_pg_core1458.PgColumn<{
|
|
5657
5657
|
name: "id";
|
|
5658
5658
|
tableName: "work_app_github_mcp_tool_repository_access";
|
|
5659
5659
|
dataType: "string";
|
|
@@ -5681,11 +5681,11 @@ declare const workAppGitHubMcpToolRepositoryAccess: drizzle_orm_pg_core569.PgTab
|
|
|
5681
5681
|
* - 'selected': Project only has access to repositories listed in work_app_github_project_repository_access
|
|
5682
5682
|
* If no row exists for a project, defaults to 'selected' (fail-safe: no access unless explicitly granted).
|
|
5683
5683
|
*/
|
|
5684
|
-
declare const workAppGitHubProjectAccessMode:
|
|
5684
|
+
declare const workAppGitHubProjectAccessMode: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
5685
5685
|
name: "work_app_github_project_access_mode";
|
|
5686
5686
|
schema: undefined;
|
|
5687
5687
|
columns: {
|
|
5688
|
-
createdAt:
|
|
5688
|
+
createdAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
5689
5689
|
name: "created_at";
|
|
5690
5690
|
tableName: "work_app_github_project_access_mode";
|
|
5691
5691
|
dataType: "string";
|
|
@@ -5702,7 +5702,7 @@ declare const workAppGitHubProjectAccessMode: drizzle_orm_pg_core569.PgTableWith
|
|
|
5702
5702
|
identity: undefined;
|
|
5703
5703
|
generated: undefined;
|
|
5704
5704
|
}, {}, {}>;
|
|
5705
|
-
updatedAt:
|
|
5705
|
+
updatedAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
5706
5706
|
name: "updated_at";
|
|
5707
5707
|
tableName: "work_app_github_project_access_mode";
|
|
5708
5708
|
dataType: "string";
|
|
@@ -5719,7 +5719,7 @@ declare const workAppGitHubProjectAccessMode: drizzle_orm_pg_core569.PgTableWith
|
|
|
5719
5719
|
identity: undefined;
|
|
5720
5720
|
generated: undefined;
|
|
5721
5721
|
}, {}, {}>;
|
|
5722
|
-
tenantId:
|
|
5722
|
+
tenantId: drizzle_orm_pg_core1458.PgColumn<{
|
|
5723
5723
|
name: "tenant_id";
|
|
5724
5724
|
tableName: "work_app_github_project_access_mode";
|
|
5725
5725
|
dataType: "string";
|
|
@@ -5738,7 +5738,7 @@ declare const workAppGitHubProjectAccessMode: drizzle_orm_pg_core569.PgTableWith
|
|
|
5738
5738
|
}, {}, {
|
|
5739
5739
|
length: 256;
|
|
5740
5740
|
}>;
|
|
5741
|
-
projectId:
|
|
5741
|
+
projectId: drizzle_orm_pg_core1458.PgColumn<{
|
|
5742
5742
|
name: "project_id";
|
|
5743
5743
|
tableName: "work_app_github_project_access_mode";
|
|
5744
5744
|
dataType: "string";
|
|
@@ -5757,7 +5757,7 @@ declare const workAppGitHubProjectAccessMode: drizzle_orm_pg_core569.PgTableWith
|
|
|
5757
5757
|
}, {}, {
|
|
5758
5758
|
length: 256;
|
|
5759
5759
|
}>;
|
|
5760
|
-
mode:
|
|
5760
|
+
mode: drizzle_orm_pg_core1458.PgColumn<{
|
|
5761
5761
|
name: "mode";
|
|
5762
5762
|
tableName: "work_app_github_project_access_mode";
|
|
5763
5763
|
dataType: "string";
|
|
@@ -5786,11 +5786,11 @@ declare const workAppGitHubProjectAccessMode: drizzle_orm_pg_core569.PgTableWith
|
|
|
5786
5786
|
* - 'selected': Tool only has access to repositories listed in work_app_github_mcp_tool_repository_access
|
|
5787
5787
|
* If no row exists for a tool, defaults to 'selected' (fail-safe: no access unless explicitly granted).
|
|
5788
5788
|
*/
|
|
5789
|
-
declare const workAppGitHubMcpToolAccessMode:
|
|
5789
|
+
declare const workAppGitHubMcpToolAccessMode: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
5790
5790
|
name: "work_app_github_mcp_tool_access_mode";
|
|
5791
5791
|
schema: undefined;
|
|
5792
5792
|
columns: {
|
|
5793
|
-
createdAt:
|
|
5793
|
+
createdAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
5794
5794
|
name: "created_at";
|
|
5795
5795
|
tableName: "work_app_github_mcp_tool_access_mode";
|
|
5796
5796
|
dataType: "string";
|
|
@@ -5807,7 +5807,7 @@ declare const workAppGitHubMcpToolAccessMode: drizzle_orm_pg_core569.PgTableWith
|
|
|
5807
5807
|
identity: undefined;
|
|
5808
5808
|
generated: undefined;
|
|
5809
5809
|
}, {}, {}>;
|
|
5810
|
-
updatedAt:
|
|
5810
|
+
updatedAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
5811
5811
|
name: "updated_at";
|
|
5812
5812
|
tableName: "work_app_github_mcp_tool_access_mode";
|
|
5813
5813
|
dataType: "string";
|
|
@@ -5824,7 +5824,7 @@ declare const workAppGitHubMcpToolAccessMode: drizzle_orm_pg_core569.PgTableWith
|
|
|
5824
5824
|
identity: undefined;
|
|
5825
5825
|
generated: undefined;
|
|
5826
5826
|
}, {}, {}>;
|
|
5827
|
-
toolId:
|
|
5827
|
+
toolId: drizzle_orm_pg_core1458.PgColumn<{
|
|
5828
5828
|
name: "tool_id";
|
|
5829
5829
|
tableName: "work_app_github_mcp_tool_access_mode";
|
|
5830
5830
|
dataType: "string";
|
|
@@ -5843,7 +5843,7 @@ declare const workAppGitHubMcpToolAccessMode: drizzle_orm_pg_core569.PgTableWith
|
|
|
5843
5843
|
}, {}, {
|
|
5844
5844
|
length: 256;
|
|
5845
5845
|
}>;
|
|
5846
|
-
tenantId:
|
|
5846
|
+
tenantId: drizzle_orm_pg_core1458.PgColumn<{
|
|
5847
5847
|
name: "tenant_id";
|
|
5848
5848
|
tableName: "work_app_github_mcp_tool_access_mode";
|
|
5849
5849
|
dataType: "string";
|
|
@@ -5862,7 +5862,7 @@ declare const workAppGitHubMcpToolAccessMode: drizzle_orm_pg_core569.PgTableWith
|
|
|
5862
5862
|
}, {}, {
|
|
5863
5863
|
length: 256;
|
|
5864
5864
|
}>;
|
|
5865
|
-
projectId:
|
|
5865
|
+
projectId: drizzle_orm_pg_core1458.PgColumn<{
|
|
5866
5866
|
name: "project_id";
|
|
5867
5867
|
tableName: "work_app_github_mcp_tool_access_mode";
|
|
5868
5868
|
dataType: "string";
|
|
@@ -5881,7 +5881,7 @@ declare const workAppGitHubMcpToolAccessMode: drizzle_orm_pg_core569.PgTableWith
|
|
|
5881
5881
|
}, {}, {
|
|
5882
5882
|
length: 256;
|
|
5883
5883
|
}>;
|
|
5884
|
-
mode:
|
|
5884
|
+
mode: drizzle_orm_pg_core1458.PgColumn<{
|
|
5885
5885
|
name: "mode";
|
|
5886
5886
|
tableName: "work_app_github_mcp_tool_access_mode";
|
|
5887
5887
|
dataType: "string";
|
|
@@ -5904,25 +5904,25 @@ declare const workAppGitHubMcpToolAccessMode: drizzle_orm_pg_core569.PgTableWith
|
|
|
5904
5904
|
};
|
|
5905
5905
|
dialect: "pg";
|
|
5906
5906
|
}>;
|
|
5907
|
-
declare const workAppGitHubInstallationsRelations:
|
|
5908
|
-
repositories:
|
|
5907
|
+
declare const workAppGitHubInstallationsRelations: drizzle_orm20.Relations<"work_app_github_installations", {
|
|
5908
|
+
repositories: drizzle_orm20.Many<"work_app_github_repositories">;
|
|
5909
5909
|
}>;
|
|
5910
|
-
declare const workAppGitHubRepositoriesRelations:
|
|
5911
|
-
installation:
|
|
5912
|
-
projectAccess:
|
|
5913
|
-
mcpToolAccess:
|
|
5910
|
+
declare const workAppGitHubRepositoriesRelations: drizzle_orm20.Relations<"work_app_github_repositories", {
|
|
5911
|
+
installation: drizzle_orm20.One<"work_app_github_installations", true>;
|
|
5912
|
+
projectAccess: drizzle_orm20.Many<"work_app_github_project_repository_access">;
|
|
5913
|
+
mcpToolAccess: drizzle_orm20.Many<"work_app_github_mcp_tool_repository_access">;
|
|
5914
5914
|
}>;
|
|
5915
|
-
declare const workAppGitHubProjectRepositoryAccessRelations:
|
|
5916
|
-
repository:
|
|
5915
|
+
declare const workAppGitHubProjectRepositoryAccessRelations: drizzle_orm20.Relations<"work_app_github_project_repository_access", {
|
|
5916
|
+
repository: drizzle_orm20.One<"work_app_github_repositories", true>;
|
|
5917
5917
|
}>;
|
|
5918
|
-
declare const workAppGitHubMcpToolRepositoryAccessRelations:
|
|
5919
|
-
repository:
|
|
5918
|
+
declare const workAppGitHubMcpToolRepositoryAccessRelations: drizzle_orm20.Relations<"work_app_github_mcp_tool_repository_access", {
|
|
5919
|
+
repository: drizzle_orm20.One<"work_app_github_repositories", true>;
|
|
5920
5920
|
}>;
|
|
5921
|
-
declare const workAppSlackMcpToolAccessConfig:
|
|
5921
|
+
declare const workAppSlackMcpToolAccessConfig: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
5922
5922
|
name: "work_app_slack_mcp_tool_access_config";
|
|
5923
5923
|
schema: undefined;
|
|
5924
5924
|
columns: {
|
|
5925
|
-
createdAt:
|
|
5925
|
+
createdAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
5926
5926
|
name: "created_at";
|
|
5927
5927
|
tableName: "work_app_slack_mcp_tool_access_config";
|
|
5928
5928
|
dataType: "string";
|
|
@@ -5939,7 +5939,7 @@ declare const workAppSlackMcpToolAccessConfig: drizzle_orm_pg_core569.PgTableWit
|
|
|
5939
5939
|
identity: undefined;
|
|
5940
5940
|
generated: undefined;
|
|
5941
5941
|
}, {}, {}>;
|
|
5942
|
-
updatedAt:
|
|
5942
|
+
updatedAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
5943
5943
|
name: "updated_at";
|
|
5944
5944
|
tableName: "work_app_slack_mcp_tool_access_config";
|
|
5945
5945
|
dataType: "string";
|
|
@@ -5956,7 +5956,7 @@ declare const workAppSlackMcpToolAccessConfig: drizzle_orm_pg_core569.PgTableWit
|
|
|
5956
5956
|
identity: undefined;
|
|
5957
5957
|
generated: undefined;
|
|
5958
5958
|
}, {}, {}>;
|
|
5959
|
-
toolId:
|
|
5959
|
+
toolId: drizzle_orm_pg_core1458.PgColumn<{
|
|
5960
5960
|
name: "tool_id";
|
|
5961
5961
|
tableName: "work_app_slack_mcp_tool_access_config";
|
|
5962
5962
|
dataType: "string";
|
|
@@ -5975,7 +5975,7 @@ declare const workAppSlackMcpToolAccessConfig: drizzle_orm_pg_core569.PgTableWit
|
|
|
5975
5975
|
}, {}, {
|
|
5976
5976
|
length: 256;
|
|
5977
5977
|
}>;
|
|
5978
|
-
tenantId:
|
|
5978
|
+
tenantId: drizzle_orm_pg_core1458.PgColumn<{
|
|
5979
5979
|
name: "tenant_id";
|
|
5980
5980
|
tableName: "work_app_slack_mcp_tool_access_config";
|
|
5981
5981
|
dataType: "string";
|
|
@@ -5994,7 +5994,7 @@ declare const workAppSlackMcpToolAccessConfig: drizzle_orm_pg_core569.PgTableWit
|
|
|
5994
5994
|
}, {}, {
|
|
5995
5995
|
length: 256;
|
|
5996
5996
|
}>;
|
|
5997
|
-
projectId:
|
|
5997
|
+
projectId: drizzle_orm_pg_core1458.PgColumn<{
|
|
5998
5998
|
name: "project_id";
|
|
5999
5999
|
tableName: "work_app_slack_mcp_tool_access_config";
|
|
6000
6000
|
dataType: "string";
|
|
@@ -6013,7 +6013,7 @@ declare const workAppSlackMcpToolAccessConfig: drizzle_orm_pg_core569.PgTableWit
|
|
|
6013
6013
|
}, {}, {
|
|
6014
6014
|
length: 256;
|
|
6015
6015
|
}>;
|
|
6016
|
-
channelAccessMode:
|
|
6016
|
+
channelAccessMode: drizzle_orm_pg_core1458.PgColumn<{
|
|
6017
6017
|
name: "channel_access_mode";
|
|
6018
6018
|
tableName: "work_app_slack_mcp_tool_access_config";
|
|
6019
6019
|
dataType: "string";
|
|
@@ -6033,7 +6033,7 @@ declare const workAppSlackMcpToolAccessConfig: drizzle_orm_pg_core569.PgTableWit
|
|
|
6033
6033
|
length: 20;
|
|
6034
6034
|
$type: "all" | "selected";
|
|
6035
6035
|
}>;
|
|
6036
|
-
dmEnabled:
|
|
6036
|
+
dmEnabled: drizzle_orm_pg_core1458.PgColumn<{
|
|
6037
6037
|
name: "dm_enabled";
|
|
6038
6038
|
tableName: "work_app_slack_mcp_tool_access_config";
|
|
6039
6039
|
dataType: "boolean";
|
|
@@ -6050,7 +6050,7 @@ declare const workAppSlackMcpToolAccessConfig: drizzle_orm_pg_core569.PgTableWit
|
|
|
6050
6050
|
identity: undefined;
|
|
6051
6051
|
generated: undefined;
|
|
6052
6052
|
}, {}, {}>;
|
|
6053
|
-
channelIds:
|
|
6053
|
+
channelIds: drizzle_orm_pg_core1458.PgColumn<{
|
|
6054
6054
|
name: "channel_ids";
|
|
6055
6055
|
tableName: "work_app_slack_mcp_tool_access_config";
|
|
6056
6056
|
dataType: "json";
|
|
@@ -6072,11 +6072,11 @@ declare const workAppSlackMcpToolAccessConfig: drizzle_orm_pg_core569.PgTableWit
|
|
|
6072
6072
|
};
|
|
6073
6073
|
dialect: "pg";
|
|
6074
6074
|
}>;
|
|
6075
|
-
declare const orgEntitlement:
|
|
6075
|
+
declare const orgEntitlement: drizzle_orm_pg_core1458.PgTableWithColumns<{
|
|
6076
6076
|
name: "org_entitlement";
|
|
6077
6077
|
schema: undefined;
|
|
6078
6078
|
columns: {
|
|
6079
|
-
createdAt:
|
|
6079
|
+
createdAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
6080
6080
|
name: "created_at";
|
|
6081
6081
|
tableName: "org_entitlement";
|
|
6082
6082
|
dataType: "string";
|
|
@@ -6093,7 +6093,7 @@ declare const orgEntitlement: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
6093
6093
|
identity: undefined;
|
|
6094
6094
|
generated: undefined;
|
|
6095
6095
|
}, {}, {}>;
|
|
6096
|
-
updatedAt:
|
|
6096
|
+
updatedAt: drizzle_orm_pg_core1458.PgColumn<{
|
|
6097
6097
|
name: "updated_at";
|
|
6098
6098
|
tableName: "org_entitlement";
|
|
6099
6099
|
dataType: "string";
|
|
@@ -6110,7 +6110,7 @@ declare const orgEntitlement: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
6110
6110
|
identity: undefined;
|
|
6111
6111
|
generated: undefined;
|
|
6112
6112
|
}, {}, {}>;
|
|
6113
|
-
id:
|
|
6113
|
+
id: drizzle_orm_pg_core1458.PgColumn<{
|
|
6114
6114
|
name: "id";
|
|
6115
6115
|
tableName: "org_entitlement";
|
|
6116
6116
|
dataType: "string";
|
|
@@ -6129,7 +6129,7 @@ declare const orgEntitlement: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
6129
6129
|
}, {}, {
|
|
6130
6130
|
length: 256;
|
|
6131
6131
|
}>;
|
|
6132
|
-
organizationId:
|
|
6132
|
+
organizationId: drizzle_orm_pg_core1458.PgColumn<{
|
|
6133
6133
|
name: "organization_id";
|
|
6134
6134
|
tableName: "org_entitlement";
|
|
6135
6135
|
dataType: "string";
|
|
@@ -6148,7 +6148,7 @@ declare const orgEntitlement: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
6148
6148
|
}, {}, {
|
|
6149
6149
|
length: 256;
|
|
6150
6150
|
}>;
|
|
6151
|
-
resourceType:
|
|
6151
|
+
resourceType: drizzle_orm_pg_core1458.PgColumn<{
|
|
6152
6152
|
name: "resource_type";
|
|
6153
6153
|
tableName: "org_entitlement";
|
|
6154
6154
|
dataType: "string";
|
|
@@ -6165,7 +6165,7 @@ declare const orgEntitlement: drizzle_orm_pg_core569.PgTableWithColumns<{
|
|
|
6165
6165
|
identity: undefined;
|
|
6166
6166
|
generated: undefined;
|
|
6167
6167
|
}, {}, {}>;
|
|
6168
|
-
maxValue:
|
|
6168
|
+
maxValue: drizzle_orm_pg_core1458.PgColumn<{
|
|
6169
6169
|
name: "max_value";
|
|
6170
6170
|
tableName: "org_entitlement";
|
|
6171
6171
|
dataType: "number";
|