@cat-factory/node-server 0.145.0 → 0.147.0
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/container-content-library-deps.d.ts +14 -0
- package/dist/container-content-library-deps.d.ts.map +1 -1
- package/dist/container-content-library-deps.js +23 -0
- package/dist/container-content-library-deps.js.map +1 -1
- package/dist/container-core-deps.d.ts.map +1 -1
- package/dist/container-core-deps.js +4 -1
- package/dist/container-core-deps.js.map +1 -1
- package/dist/container-run-platform.d.ts +81 -0
- package/dist/container-run-platform.d.ts.map +1 -0
- package/dist/container-run-platform.js +227 -0
- package/dist/container-run-platform.js.map +1 -0
- package/dist/container.d.ts.map +1 -1
- package/dist/container.js +15 -208
- package/dist/container.js.map +1 -1
- package/dist/db/schema.d.ts +16 -1134
- package/dist/db/schema.d.ts.map +1 -1
- package/dist/db/schema.js +12 -165
- package/dist/db/schema.js.map +1 -1
- package/dist/db/tables/foundational-services.d.ts +652 -0
- package/dist/db/tables/foundational-services.d.ts.map +1 -0
- package/dist/db/tables/foundational-services.js +92 -0
- package/dist/db/tables/foundational-services.js.map +1 -0
- package/dist/db/tables/prompt-fragments.d.ts +659 -0
- package/dist/db/tables/prompt-fragments.d.ts.map +1 -0
- package/dist/db/tables/prompt-fragments.js +105 -0
- package/dist/db/tables/prompt-fragments.js.map +1 -0
- package/dist/db/tables/settings.d.ts +479 -0
- package/dist/db/tables/settings.d.ts.map +1 -0
- package/dist/db/tables/settings.js +95 -0
- package/dist/db/tables/settings.js.map +1 -0
- package/dist/foundationalServices.d.ts +8 -0
- package/dist/foundationalServices.d.ts.map +1 -0
- package/dist/foundationalServices.js +32 -0
- package/dist/foundationalServices.js.map +1 -0
- package/dist/repositories/drizzle/settings.d.ts.map +1 -1
- package/dist/repositories/drizzle/settings.js +14 -0
- package/dist/repositories/drizzle/settings.js.map +1 -1
- package/dist/repositories/foundationalServices.d.ts +32 -0
- package/dist/repositories/foundationalServices.d.ts.map +1 -0
- package/dist/repositories/foundationalServices.js +334 -0
- package/dist/repositories/foundationalServices.js.map +1 -0
- package/dist/server.d.ts.map +1 -1
- package/dist/server.js +8 -1
- package/dist/server.js.map +1 -1
- package/drizzle/20260731181106_serious_black_bolt/migration.sql +1 -0
- package/drizzle/20260731181106_serious_black_bolt/snapshot.json +18142 -0
- package/drizzle/20260731183716_foundational_services/migration.sql +59 -0
- package/drizzle/20260731183716_foundational_services/snapshot.json +18917 -0
- package/package.json +20 -20
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
import { sql } from 'drizzle-orm';
|
|
2
|
+
import { bigint, index, pgTable, primaryKey, text, uniqueIndex } from 'drizzle-orm/pg-core';
|
|
3
|
+
// ---------------------------------------------------------------------------
|
|
4
|
+
// The PROMPT-FRAGMENT LIBRARY tables (ADR 0006): the tenant-scoped catalog of
|
|
5
|
+
// best-practice standards an agent's system prompt folds in, plus the two tables that
|
|
6
|
+
// exist only to serve it — the model-generated condensed briefs, and the repo directories
|
|
7
|
+
// a tier syncs its Markdown guideline files from — and the per-workspace row naming which
|
|
8
|
+
// fragments a new service inherits.
|
|
9
|
+
//
|
|
10
|
+
// Split out of `../schema.ts` so that module stays inside its size budget, exactly as
|
|
11
|
+
// `tables/identity.ts`, `tables/vcs.ts` and `tables/settings.ts` were; it re-exports
|
|
12
|
+
// everything here, so every importer (and drizzle-kit, which follows the re-export) still
|
|
13
|
+
// reaches these through `db/schema.js`. Columns mirror the Cloudflare D1 tables
|
|
14
|
+
// one-for-one, per the runtime-symmetry rule.
|
|
15
|
+
// ---------------------------------------------------------------------------
|
|
16
|
+
// Per-workspace default service-fragment selection (mirror of D1 migration 0040). One
|
|
17
|
+
// row per workspace; the best-practice fragment ids new services inherit, JSON array.
|
|
18
|
+
export const workspaceFragmentDefaults = pgTable('workspace_fragment_defaults', {
|
|
19
|
+
workspace_id: text('workspace_id').primaryKey(),
|
|
20
|
+
fragment_ids: text('fragment_ids').notNull(),
|
|
21
|
+
updated_at: bigint('updated_at', { mode: 'number' }).notNull(),
|
|
22
|
+
});
|
|
23
|
+
// Prompt-fragment library (ADR 0006; mirror of D1 migration 0020). The managed,
|
|
24
|
+
// tenant-scoped catalog of best-practice fragments, scoped by an (owner_kind,
|
|
25
|
+
// owner_id) pair so one table backs both the account and workspace tiers. JSON-shaped
|
|
26
|
+
// columns (`applies_to`, `tags`) are `text`; a tombstone (`deleted_at`) suppresses an
|
|
27
|
+
// inherited or removed-upstream fragment.
|
|
28
|
+
export const promptFragments = pgTable('prompt_fragments', {
|
|
29
|
+
fragment_id: text('fragment_id').notNull(),
|
|
30
|
+
owner_kind: text('owner_kind').notNull(),
|
|
31
|
+
owner_id: text('owner_id').notNull(),
|
|
32
|
+
version: text('version').notNull(),
|
|
33
|
+
title: text('title').notNull(),
|
|
34
|
+
category: text('category'),
|
|
35
|
+
summary: text('summary').notNull(),
|
|
36
|
+
body: text('body').notNull(),
|
|
37
|
+
// The short version this tier LINKED (hand-authored, or a sourced file's `brief:`
|
|
38
|
+
// frontmatter), folded for implementer kinds in place of `body`. Null ⇒ a long body is
|
|
39
|
+
// condensed automatically into `fragment_briefs`.
|
|
40
|
+
brief: text('brief'),
|
|
41
|
+
applies_to: text('applies_to'),
|
|
42
|
+
tags: text('tags'),
|
|
43
|
+
source_id: text('source_id'),
|
|
44
|
+
source_path: text('source_path'),
|
|
45
|
+
source_sha: text('source_sha'),
|
|
46
|
+
doc_source: text('doc_source'),
|
|
47
|
+
doc_external_id: text('doc_external_id'),
|
|
48
|
+
doc_via_workspace_id: text('doc_via_workspace_id'),
|
|
49
|
+
resolved_at: bigint('resolved_at', { mode: 'number' }),
|
|
50
|
+
created_at: bigint('created_at', { mode: 'number' }).notNull(),
|
|
51
|
+
updated_at: bigint('updated_at', { mode: 'number' }).notNull(),
|
|
52
|
+
deleted_at: bigint('deleted_at', { mode: 'number' }),
|
|
53
|
+
}, (t) => [
|
|
54
|
+
primaryKey({ columns: [t.owner_kind, t.owner_id, t.fragment_id] }),
|
|
55
|
+
index('idx_prompt_fragments_owner')
|
|
56
|
+
.on(t.owner_kind, t.owner_id)
|
|
57
|
+
.where(sql `${t.deleted_at} IS NULL`),
|
|
58
|
+
index('idx_prompt_fragments_source')
|
|
59
|
+
.on(t.source_id)
|
|
60
|
+
.where(sql `${t.deleted_at} IS NULL`),
|
|
61
|
+
]);
|
|
62
|
+
// Model-GENERATED condensed briefs for long best-practice standards that link none of their
|
|
63
|
+
// own (mirror of D1 migration 0069). Derived data with its own lifecycle — regenerated when
|
|
64
|
+
// `body_fingerprint` stops matching the body resolved at run time, dropped with its fragment —
|
|
65
|
+
// which is why it is a table of its own rather than more columns on `prompt_fragments`: it must
|
|
66
|
+
// also cover a BUILT-IN fragment, which has no managed row, and stay clear of the tier merge's
|
|
67
|
+
// shadow/tombstone semantics. Scoped by the owner of the tier that won the merge (a builtin-tier
|
|
68
|
+
// entry is scoped to the resolving workspace's account), so a row is bound to a tenant exactly
|
|
69
|
+
// like the fragment it condenses. The PK leads with the owner pair, which is the only read shape.
|
|
70
|
+
// An EMPTY `brief` is a real state — "this body was condensed and the result was unusable" — kept
|
|
71
|
+
// so a standard that cannot be usefully shortened is not re-condensed on every dispatch forever;
|
|
72
|
+
// it self-clears when `body_fingerprint` stops matching. See the D1 0069 header for the full rule.
|
|
73
|
+
export const fragmentBriefs = pgTable('fragment_briefs', {
|
|
74
|
+
owner_kind: text('owner_kind').notNull(),
|
|
75
|
+
owner_id: text('owner_id').notNull(),
|
|
76
|
+
fragment_id: text('fragment_id').notNull(),
|
|
77
|
+
body_fingerprint: text('body_fingerprint').notNull(),
|
|
78
|
+
brief: text('brief').notNull(),
|
|
79
|
+
model: text('model').notNull(),
|
|
80
|
+
generated_at: bigint('generated_at', { mode: 'number' }).notNull(),
|
|
81
|
+
}, (t) => [primaryKey({ columns: [t.owner_kind, t.owner_id, t.fragment_id] })]);
|
|
82
|
+
// A repo directory linked as a source of Markdown guideline files (ADR 0006 §3;
|
|
83
|
+
// mirror of D1 migration 0020). At most one live source per (owner, repo, ref, dir) —
|
|
84
|
+
// the unique index is the upsert key; a partial owner index powers the list.
|
|
85
|
+
export const fragmentSources = pgTable('fragment_sources', {
|
|
86
|
+
id: text('id').primaryKey(),
|
|
87
|
+
owner_kind: text('owner_kind').notNull(),
|
|
88
|
+
owner_id: text('owner_id').notNull(),
|
|
89
|
+
repo_owner: text('repo_owner').notNull(),
|
|
90
|
+
repo_name: text('repo_name').notNull(),
|
|
91
|
+
git_ref: text('git_ref').notNull().default('HEAD'),
|
|
92
|
+
dir_path: text('dir_path').notNull().default(''),
|
|
93
|
+
// Head commit sha of the source dir at the last sync (name kept for column stability;
|
|
94
|
+
// it no longer stores the former tree-listing digest). Powers the staleness probe.
|
|
95
|
+
last_synced_sha: text('last_synced_sha'),
|
|
96
|
+
last_synced_at: bigint('last_synced_at', { mode: 'number' }),
|
|
97
|
+
created_at: bigint('created_at', { mode: 'number' }).notNull(),
|
|
98
|
+
deleted_at: bigint('deleted_at', { mode: 'number' }),
|
|
99
|
+
}, (t) => [
|
|
100
|
+
uniqueIndex('idx_fragment_sources_unique').on(t.owner_kind, t.owner_id, t.repo_owner, t.repo_name, t.git_ref, t.dir_path),
|
|
101
|
+
index('idx_fragment_sources_owner')
|
|
102
|
+
.on(t.owner_kind, t.owner_id)
|
|
103
|
+
.where(sql `${t.deleted_at} IS NULL`),
|
|
104
|
+
]);
|
|
105
|
+
//# sourceMappingURL=prompt-fragments.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"prompt-fragments.js","sourceRoot":"","sources":["../../../src/db/tables/prompt-fragments.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,479 @@
|
|
|
1
|
+
export declare const localSettings: import("drizzle-orm/pg-core").PgTableWithColumns<{
|
|
2
|
+
name: "local_settings";
|
|
3
|
+
schema: undefined;
|
|
4
|
+
columns: {
|
|
5
|
+
id: import("drizzle-orm/pg-core").PgBuildColumn<"local_settings", import("drizzle-orm/pg-core").SetIsPrimaryKey<import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>>, {
|
|
6
|
+
name: string;
|
|
7
|
+
tableName: "local_settings";
|
|
8
|
+
dataType: "string";
|
|
9
|
+
data: string;
|
|
10
|
+
driverParam: string;
|
|
11
|
+
notNull: true;
|
|
12
|
+
hasDefault: false;
|
|
13
|
+
isPrimaryKey: false;
|
|
14
|
+
isAutoincrement: false;
|
|
15
|
+
hasRuntimeDefault: false;
|
|
16
|
+
enumValues: undefined;
|
|
17
|
+
identity: undefined;
|
|
18
|
+
generated: undefined;
|
|
19
|
+
}>;
|
|
20
|
+
config: import("drizzle-orm/pg-core").PgBuildColumn<"local_settings", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>>, {
|
|
21
|
+
name: string;
|
|
22
|
+
tableName: "local_settings";
|
|
23
|
+
dataType: "string";
|
|
24
|
+
data: string;
|
|
25
|
+
driverParam: string;
|
|
26
|
+
notNull: true;
|
|
27
|
+
hasDefault: false;
|
|
28
|
+
isPrimaryKey: false;
|
|
29
|
+
isAutoincrement: false;
|
|
30
|
+
hasRuntimeDefault: false;
|
|
31
|
+
enumValues: undefined;
|
|
32
|
+
identity: undefined;
|
|
33
|
+
generated: undefined;
|
|
34
|
+
}>;
|
|
35
|
+
created_at: import("drizzle-orm/pg-core").PgBuildColumn<"local_settings", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgBigInt53Builder>, {
|
|
36
|
+
name: string;
|
|
37
|
+
tableName: "local_settings";
|
|
38
|
+
dataType: "number int53";
|
|
39
|
+
data: number;
|
|
40
|
+
driverParam: string | number;
|
|
41
|
+
notNull: true;
|
|
42
|
+
hasDefault: false;
|
|
43
|
+
isPrimaryKey: false;
|
|
44
|
+
isAutoincrement: false;
|
|
45
|
+
hasRuntimeDefault: false;
|
|
46
|
+
enumValues: undefined;
|
|
47
|
+
identity: undefined;
|
|
48
|
+
generated: undefined;
|
|
49
|
+
}>;
|
|
50
|
+
updated_at: import("drizzle-orm/pg-core").PgBuildColumn<"local_settings", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgBigInt53Builder>, {
|
|
51
|
+
name: string;
|
|
52
|
+
tableName: "local_settings";
|
|
53
|
+
dataType: "number int53";
|
|
54
|
+
data: number;
|
|
55
|
+
driverParam: string | number;
|
|
56
|
+
notNull: true;
|
|
57
|
+
hasDefault: false;
|
|
58
|
+
isPrimaryKey: false;
|
|
59
|
+
isAutoincrement: false;
|
|
60
|
+
hasRuntimeDefault: false;
|
|
61
|
+
enumValues: undefined;
|
|
62
|
+
identity: undefined;
|
|
63
|
+
generated: undefined;
|
|
64
|
+
}>;
|
|
65
|
+
};
|
|
66
|
+
dialect: 'pg';
|
|
67
|
+
}>;
|
|
68
|
+
export declare const userSettings: import("drizzle-orm/pg-core").PgTableWithColumns<{
|
|
69
|
+
name: "user_settings";
|
|
70
|
+
schema: undefined;
|
|
71
|
+
columns: {
|
|
72
|
+
user_id: import("drizzle-orm/pg-core").PgBuildColumn<"user_settings", import("drizzle-orm/pg-core").SetIsPrimaryKey<import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>>, {
|
|
73
|
+
name: string;
|
|
74
|
+
tableName: "user_settings";
|
|
75
|
+
dataType: "string";
|
|
76
|
+
data: string;
|
|
77
|
+
driverParam: string;
|
|
78
|
+
notNull: true;
|
|
79
|
+
hasDefault: false;
|
|
80
|
+
isPrimaryKey: false;
|
|
81
|
+
isAutoincrement: false;
|
|
82
|
+
hasRuntimeDefault: false;
|
|
83
|
+
enumValues: undefined;
|
|
84
|
+
identity: undefined;
|
|
85
|
+
generated: undefined;
|
|
86
|
+
}>;
|
|
87
|
+
spend_monthly_limit: import("drizzle-orm/pg-core").PgBuildColumn<"user_settings", import("drizzle-orm/pg-core").PgDoublePrecisionBuilder, {
|
|
88
|
+
name: string;
|
|
89
|
+
tableName: "user_settings";
|
|
90
|
+
dataType: "number double";
|
|
91
|
+
data: number;
|
|
92
|
+
driverParam: string | number;
|
|
93
|
+
notNull: false;
|
|
94
|
+
hasDefault: false;
|
|
95
|
+
isPrimaryKey: false;
|
|
96
|
+
isAutoincrement: false;
|
|
97
|
+
hasRuntimeDefault: false;
|
|
98
|
+
enumValues: undefined;
|
|
99
|
+
identity: undefined;
|
|
100
|
+
generated: undefined;
|
|
101
|
+
}>;
|
|
102
|
+
updated_at: import("drizzle-orm/pg-core").PgBuildColumn<"user_settings", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgBigInt53Builder>, {
|
|
103
|
+
name: string;
|
|
104
|
+
tableName: "user_settings";
|
|
105
|
+
dataType: "number int53";
|
|
106
|
+
data: number;
|
|
107
|
+
driverParam: string | number;
|
|
108
|
+
notNull: true;
|
|
109
|
+
hasDefault: false;
|
|
110
|
+
isPrimaryKey: false;
|
|
111
|
+
isAutoincrement: false;
|
|
112
|
+
hasRuntimeDefault: false;
|
|
113
|
+
enumValues: undefined;
|
|
114
|
+
identity: undefined;
|
|
115
|
+
generated: undefined;
|
|
116
|
+
}>;
|
|
117
|
+
};
|
|
118
|
+
dialect: 'pg';
|
|
119
|
+
}>;
|
|
120
|
+
export declare const workspaceAgentSettings: import("drizzle-orm/pg-core").PgTableWithColumns<{
|
|
121
|
+
name: "workspace_agent_settings";
|
|
122
|
+
schema: undefined;
|
|
123
|
+
columns: {
|
|
124
|
+
workspace_id: import("drizzle-orm/pg-core").PgBuildColumn<"workspace_agent_settings", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>>, {
|
|
125
|
+
name: string;
|
|
126
|
+
tableName: "workspace_agent_settings";
|
|
127
|
+
dataType: "string";
|
|
128
|
+
data: string;
|
|
129
|
+
driverParam: string;
|
|
130
|
+
notNull: true;
|
|
131
|
+
hasDefault: false;
|
|
132
|
+
isPrimaryKey: false;
|
|
133
|
+
isAutoincrement: false;
|
|
134
|
+
hasRuntimeDefault: false;
|
|
135
|
+
enumValues: undefined;
|
|
136
|
+
identity: undefined;
|
|
137
|
+
generated: undefined;
|
|
138
|
+
}>;
|
|
139
|
+
agent_kind: import("drizzle-orm/pg-core").PgBuildColumn<"workspace_agent_settings", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>>, {
|
|
140
|
+
name: string;
|
|
141
|
+
tableName: "workspace_agent_settings";
|
|
142
|
+
dataType: "string";
|
|
143
|
+
data: string;
|
|
144
|
+
driverParam: string;
|
|
145
|
+
notNull: true;
|
|
146
|
+
hasDefault: false;
|
|
147
|
+
isPrimaryKey: false;
|
|
148
|
+
isAutoincrement: false;
|
|
149
|
+
hasRuntimeDefault: false;
|
|
150
|
+
enumValues: undefined;
|
|
151
|
+
identity: undefined;
|
|
152
|
+
generated: undefined;
|
|
153
|
+
}>;
|
|
154
|
+
max_output_tokens: import("drizzle-orm/pg-core").PgBuildColumn<"workspace_agent_settings", import("drizzle-orm/pg-core").PgIntegerBuilder, {
|
|
155
|
+
name: string;
|
|
156
|
+
tableName: "workspace_agent_settings";
|
|
157
|
+
dataType: "number int32";
|
|
158
|
+
data: number;
|
|
159
|
+
driverParam: string | number;
|
|
160
|
+
notNull: false;
|
|
161
|
+
hasDefault: false;
|
|
162
|
+
isPrimaryKey: false;
|
|
163
|
+
isAutoincrement: false;
|
|
164
|
+
hasRuntimeDefault: false;
|
|
165
|
+
enumValues: undefined;
|
|
166
|
+
identity: undefined;
|
|
167
|
+
generated: undefined;
|
|
168
|
+
}>;
|
|
169
|
+
updated_at: import("drizzle-orm/pg-core").PgBuildColumn<"workspace_agent_settings", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgBigInt53Builder>, {
|
|
170
|
+
name: string;
|
|
171
|
+
tableName: "workspace_agent_settings";
|
|
172
|
+
dataType: "number int53";
|
|
173
|
+
data: number;
|
|
174
|
+
driverParam: string | number;
|
|
175
|
+
notNull: true;
|
|
176
|
+
hasDefault: false;
|
|
177
|
+
isPrimaryKey: false;
|
|
178
|
+
isAutoincrement: false;
|
|
179
|
+
hasRuntimeDefault: false;
|
|
180
|
+
enumValues: undefined;
|
|
181
|
+
identity: undefined;
|
|
182
|
+
generated: undefined;
|
|
183
|
+
}>;
|
|
184
|
+
};
|
|
185
|
+
dialect: 'pg';
|
|
186
|
+
}>;
|
|
187
|
+
export declare const workspaceSettings: import("drizzle-orm/pg-core").PgTableWithColumns<{
|
|
188
|
+
name: "workspace_settings";
|
|
189
|
+
schema: undefined;
|
|
190
|
+
columns: {
|
|
191
|
+
workspace_id: import("drizzle-orm/pg-core").PgBuildColumn<"workspace_settings", import("drizzle-orm/pg-core").SetIsPrimaryKey<import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>>>, {
|
|
192
|
+
name: string;
|
|
193
|
+
tableName: "workspace_settings";
|
|
194
|
+
dataType: "string";
|
|
195
|
+
data: string;
|
|
196
|
+
driverParam: string;
|
|
197
|
+
notNull: true;
|
|
198
|
+
hasDefault: false;
|
|
199
|
+
isPrimaryKey: false;
|
|
200
|
+
isAutoincrement: false;
|
|
201
|
+
hasRuntimeDefault: false;
|
|
202
|
+
enumValues: undefined;
|
|
203
|
+
identity: undefined;
|
|
204
|
+
generated: undefined;
|
|
205
|
+
}>;
|
|
206
|
+
waiting_escalation_minutes: import("drizzle-orm/pg-core").PgBuildColumn<"workspace_settings", import("drizzle-orm/pg-core").SetHasDefault<import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgIntegerBuilder>>, {
|
|
207
|
+
name: string;
|
|
208
|
+
tableName: "workspace_settings";
|
|
209
|
+
dataType: "number int32";
|
|
210
|
+
data: number;
|
|
211
|
+
driverParam: string | number;
|
|
212
|
+
notNull: true;
|
|
213
|
+
hasDefault: true;
|
|
214
|
+
isPrimaryKey: false;
|
|
215
|
+
isAutoincrement: false;
|
|
216
|
+
hasRuntimeDefault: false;
|
|
217
|
+
enumValues: undefined;
|
|
218
|
+
identity: undefined;
|
|
219
|
+
generated: undefined;
|
|
220
|
+
}>;
|
|
221
|
+
task_limit_mode: import("drizzle-orm/pg-core").PgBuildColumn<"workspace_settings", import("drizzle-orm/pg-core").SetHasDefault<import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>>>, {
|
|
222
|
+
name: string;
|
|
223
|
+
tableName: "workspace_settings";
|
|
224
|
+
dataType: "string";
|
|
225
|
+
data: string;
|
|
226
|
+
driverParam: string;
|
|
227
|
+
notNull: true;
|
|
228
|
+
hasDefault: true;
|
|
229
|
+
isPrimaryKey: false;
|
|
230
|
+
isAutoincrement: false;
|
|
231
|
+
hasRuntimeDefault: false;
|
|
232
|
+
enumValues: undefined;
|
|
233
|
+
identity: undefined;
|
|
234
|
+
generated: undefined;
|
|
235
|
+
}>;
|
|
236
|
+
task_limit_shared: import("drizzle-orm/pg-core").PgBuildColumn<"workspace_settings", import("drizzle-orm/pg-core").PgIntegerBuilder, {
|
|
237
|
+
name: string;
|
|
238
|
+
tableName: "workspace_settings";
|
|
239
|
+
dataType: "number int32";
|
|
240
|
+
data: number;
|
|
241
|
+
driverParam: string | number;
|
|
242
|
+
notNull: false;
|
|
243
|
+
hasDefault: false;
|
|
244
|
+
isPrimaryKey: false;
|
|
245
|
+
isAutoincrement: false;
|
|
246
|
+
hasRuntimeDefault: false;
|
|
247
|
+
enumValues: undefined;
|
|
248
|
+
identity: undefined;
|
|
249
|
+
generated: undefined;
|
|
250
|
+
}>;
|
|
251
|
+
task_limit_per_type: import("drizzle-orm/pg-core").PgBuildColumn<"workspace_settings", import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>, {
|
|
252
|
+
name: string;
|
|
253
|
+
tableName: "workspace_settings";
|
|
254
|
+
dataType: "string";
|
|
255
|
+
data: string;
|
|
256
|
+
driverParam: string;
|
|
257
|
+
notNull: false;
|
|
258
|
+
hasDefault: false;
|
|
259
|
+
isPrimaryKey: false;
|
|
260
|
+
isAutoincrement: false;
|
|
261
|
+
hasRuntimeDefault: false;
|
|
262
|
+
enumValues: undefined;
|
|
263
|
+
identity: undefined;
|
|
264
|
+
generated: undefined;
|
|
265
|
+
}>;
|
|
266
|
+
store_agent_context: import("drizzle-orm/pg-core").PgBuildColumn<"workspace_settings", import("drizzle-orm/pg-core").SetHasDefault<import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgIntegerBuilder>>, {
|
|
267
|
+
name: string;
|
|
268
|
+
tableName: "workspace_settings";
|
|
269
|
+
dataType: "number int32";
|
|
270
|
+
data: number;
|
|
271
|
+
driverParam: string | number;
|
|
272
|
+
notNull: true;
|
|
273
|
+
hasDefault: true;
|
|
274
|
+
isPrimaryKey: false;
|
|
275
|
+
isAutoincrement: false;
|
|
276
|
+
hasRuntimeDefault: false;
|
|
277
|
+
enumValues: undefined;
|
|
278
|
+
identity: undefined;
|
|
279
|
+
generated: undefined;
|
|
280
|
+
}>;
|
|
281
|
+
publish_pr_verification_report: import("drizzle-orm/pg-core").PgBuildColumn<"workspace_settings", import("drizzle-orm/pg-core").SetHasDefault<import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgIntegerBuilder>>, {
|
|
282
|
+
name: string;
|
|
283
|
+
tableName: "workspace_settings";
|
|
284
|
+
dataType: "number int32";
|
|
285
|
+
data: number;
|
|
286
|
+
driverParam: string | number;
|
|
287
|
+
notNull: true;
|
|
288
|
+
hasDefault: true;
|
|
289
|
+
isPrimaryKey: false;
|
|
290
|
+
isAutoincrement: false;
|
|
291
|
+
hasRuntimeDefault: false;
|
|
292
|
+
enumValues: undefined;
|
|
293
|
+
identity: undefined;
|
|
294
|
+
generated: undefined;
|
|
295
|
+
}>;
|
|
296
|
+
artifact_retention_days: import("drizzle-orm/pg-core").PgBuildColumn<"workspace_settings", import("drizzle-orm/pg-core").SetHasDefault<import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgIntegerBuilder>>, {
|
|
297
|
+
name: string;
|
|
298
|
+
tableName: "workspace_settings";
|
|
299
|
+
dataType: "number int32";
|
|
300
|
+
data: number;
|
|
301
|
+
driverParam: string | number;
|
|
302
|
+
notNull: true;
|
|
303
|
+
hasDefault: true;
|
|
304
|
+
isPrimaryKey: false;
|
|
305
|
+
isAutoincrement: false;
|
|
306
|
+
hasRuntimeDefault: false;
|
|
307
|
+
enumValues: undefined;
|
|
308
|
+
identity: undefined;
|
|
309
|
+
generated: undefined;
|
|
310
|
+
}>;
|
|
311
|
+
kaizen_enabled: import("drizzle-orm/pg-core").PgBuildColumn<"workspace_settings", import("drizzle-orm/pg-core").SetHasDefault<import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgIntegerBuilder>>, {
|
|
312
|
+
name: string;
|
|
313
|
+
tableName: "workspace_settings";
|
|
314
|
+
dataType: "number int32";
|
|
315
|
+
data: number;
|
|
316
|
+
driverParam: string | number;
|
|
317
|
+
notNull: true;
|
|
318
|
+
hasDefault: true;
|
|
319
|
+
isPrimaryKey: false;
|
|
320
|
+
isAutoincrement: false;
|
|
321
|
+
hasRuntimeDefault: false;
|
|
322
|
+
enumValues: undefined;
|
|
323
|
+
identity: undefined;
|
|
324
|
+
generated: undefined;
|
|
325
|
+
}>;
|
|
326
|
+
delegate_agents_to_runner_pool: import("drizzle-orm/pg-core").PgBuildColumn<"workspace_settings", import("drizzle-orm/pg-core").SetHasDefault<import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgIntegerBuilder>>, {
|
|
327
|
+
name: string;
|
|
328
|
+
tableName: "workspace_settings";
|
|
329
|
+
dataType: "number int32";
|
|
330
|
+
data: number;
|
|
331
|
+
driverParam: string | number;
|
|
332
|
+
notNull: true;
|
|
333
|
+
hasDefault: true;
|
|
334
|
+
isPrimaryKey: false;
|
|
335
|
+
isAutoincrement: false;
|
|
336
|
+
hasRuntimeDefault: false;
|
|
337
|
+
enumValues: undefined;
|
|
338
|
+
identity: undefined;
|
|
339
|
+
generated: undefined;
|
|
340
|
+
}>;
|
|
341
|
+
review_friction_mode: import("drizzle-orm/pg-core").PgBuildColumn<"workspace_settings", import("drizzle-orm/pg-core").SetHasDefault<import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>>>, {
|
|
342
|
+
name: string;
|
|
343
|
+
tableName: "workspace_settings";
|
|
344
|
+
dataType: "string";
|
|
345
|
+
data: string;
|
|
346
|
+
driverParam: string;
|
|
347
|
+
notNull: true;
|
|
348
|
+
hasDefault: true;
|
|
349
|
+
isPrimaryKey: false;
|
|
350
|
+
isAutoincrement: false;
|
|
351
|
+
hasRuntimeDefault: false;
|
|
352
|
+
enumValues: undefined;
|
|
353
|
+
identity: undefined;
|
|
354
|
+
generated: undefined;
|
|
355
|
+
}>;
|
|
356
|
+
review_friction_warn_count: import("drizzle-orm/pg-core").PgBuildColumn<"workspace_settings", import("drizzle-orm/pg-core").SetHasDefault<import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgIntegerBuilder>>, {
|
|
357
|
+
name: string;
|
|
358
|
+
tableName: "workspace_settings";
|
|
359
|
+
dataType: "number int32";
|
|
360
|
+
data: number;
|
|
361
|
+
driverParam: string | number;
|
|
362
|
+
notNull: true;
|
|
363
|
+
hasDefault: true;
|
|
364
|
+
isPrimaryKey: false;
|
|
365
|
+
isAutoincrement: false;
|
|
366
|
+
hasRuntimeDefault: false;
|
|
367
|
+
enumValues: undefined;
|
|
368
|
+
identity: undefined;
|
|
369
|
+
generated: undefined;
|
|
370
|
+
}>;
|
|
371
|
+
review_friction_block_count: import("drizzle-orm/pg-core").PgBuildColumn<"workspace_settings", import("drizzle-orm/pg-core").PgIntegerBuilder, {
|
|
372
|
+
name: string;
|
|
373
|
+
tableName: "workspace_settings";
|
|
374
|
+
dataType: "number int32";
|
|
375
|
+
data: number;
|
|
376
|
+
driverParam: string | number;
|
|
377
|
+
notNull: false;
|
|
378
|
+
hasDefault: false;
|
|
379
|
+
isPrimaryKey: false;
|
|
380
|
+
isAutoincrement: false;
|
|
381
|
+
hasRuntimeDefault: false;
|
|
382
|
+
enumValues: undefined;
|
|
383
|
+
identity: undefined;
|
|
384
|
+
generated: undefined;
|
|
385
|
+
}>;
|
|
386
|
+
review_friction_block_stuck_minutes: import("drizzle-orm/pg-core").PgBuildColumn<"workspace_settings", import("drizzle-orm/pg-core").PgIntegerBuilder, {
|
|
387
|
+
name: string;
|
|
388
|
+
tableName: "workspace_settings";
|
|
389
|
+
dataType: "number int32";
|
|
390
|
+
data: number;
|
|
391
|
+
driverParam: string | number;
|
|
392
|
+
notNull: false;
|
|
393
|
+
hasDefault: false;
|
|
394
|
+
isPrimaryKey: false;
|
|
395
|
+
isAutoincrement: false;
|
|
396
|
+
hasRuntimeDefault: false;
|
|
397
|
+
enumValues: undefined;
|
|
398
|
+
identity: undefined;
|
|
399
|
+
generated: undefined;
|
|
400
|
+
}>;
|
|
401
|
+
spend_currency: import("drizzle-orm/pg-core").PgBuildColumn<"workspace_settings", import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>, {
|
|
402
|
+
name: string;
|
|
403
|
+
tableName: "workspace_settings";
|
|
404
|
+
dataType: "string";
|
|
405
|
+
data: string;
|
|
406
|
+
driverParam: string;
|
|
407
|
+
notNull: false;
|
|
408
|
+
hasDefault: false;
|
|
409
|
+
isPrimaryKey: false;
|
|
410
|
+
isAutoincrement: false;
|
|
411
|
+
hasRuntimeDefault: false;
|
|
412
|
+
enumValues: undefined;
|
|
413
|
+
identity: undefined;
|
|
414
|
+
generated: undefined;
|
|
415
|
+
}>;
|
|
416
|
+
spend_monthly_limit: import("drizzle-orm/pg-core").PgBuildColumn<"workspace_settings", import("drizzle-orm/pg-core").PgDoublePrecisionBuilder, {
|
|
417
|
+
name: string;
|
|
418
|
+
tableName: "workspace_settings";
|
|
419
|
+
dataType: "number double";
|
|
420
|
+
data: number;
|
|
421
|
+
driverParam: string | number;
|
|
422
|
+
notNull: false;
|
|
423
|
+
hasDefault: false;
|
|
424
|
+
isPrimaryKey: false;
|
|
425
|
+
isAutoincrement: false;
|
|
426
|
+
hasRuntimeDefault: false;
|
|
427
|
+
enumValues: undefined;
|
|
428
|
+
identity: undefined;
|
|
429
|
+
generated: undefined;
|
|
430
|
+
}>;
|
|
431
|
+
default_provision_type: import("drizzle-orm/pg-core").PgBuildColumn<"workspace_settings", import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>, {
|
|
432
|
+
name: string;
|
|
433
|
+
tableName: "workspace_settings";
|
|
434
|
+
dataType: "string";
|
|
435
|
+
data: string;
|
|
436
|
+
driverParam: string;
|
|
437
|
+
notNull: false;
|
|
438
|
+
hasDefault: false;
|
|
439
|
+
isPrimaryKey: false;
|
|
440
|
+
isAutoincrement: false;
|
|
441
|
+
hasRuntimeDefault: false;
|
|
442
|
+
enumValues: undefined;
|
|
443
|
+
identity: undefined;
|
|
444
|
+
generated: undefined;
|
|
445
|
+
}>;
|
|
446
|
+
default_provision_manifest_id: import("drizzle-orm/pg-core").PgBuildColumn<"workspace_settings", import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>, {
|
|
447
|
+
name: string;
|
|
448
|
+
tableName: "workspace_settings";
|
|
449
|
+
dataType: "string";
|
|
450
|
+
data: string;
|
|
451
|
+
driverParam: string;
|
|
452
|
+
notNull: false;
|
|
453
|
+
hasDefault: false;
|
|
454
|
+
isPrimaryKey: false;
|
|
455
|
+
isAutoincrement: false;
|
|
456
|
+
hasRuntimeDefault: false;
|
|
457
|
+
enumValues: undefined;
|
|
458
|
+
identity: undefined;
|
|
459
|
+
generated: undefined;
|
|
460
|
+
}>;
|
|
461
|
+
metadata: import("drizzle-orm/pg-core").PgBuildColumn<"workspace_settings", import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>, {
|
|
462
|
+
name: string;
|
|
463
|
+
tableName: "workspace_settings";
|
|
464
|
+
dataType: "string";
|
|
465
|
+
data: string;
|
|
466
|
+
driverParam: string;
|
|
467
|
+
notNull: false;
|
|
468
|
+
hasDefault: false;
|
|
469
|
+
isPrimaryKey: false;
|
|
470
|
+
isAutoincrement: false;
|
|
471
|
+
hasRuntimeDefault: false;
|
|
472
|
+
enumValues: undefined;
|
|
473
|
+
identity: undefined;
|
|
474
|
+
generated: undefined;
|
|
475
|
+
}>;
|
|
476
|
+
};
|
|
477
|
+
dialect: 'pg';
|
|
478
|
+
}>;
|
|
479
|
+
//# sourceMappingURL=settings.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"settings.d.ts","sourceRoot":"","sources":["../../../src/db/tables/settings.ts"],"names":[],"mappings":"AAsBA,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAKxB,CAAA;AAEF,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAKvB,CAAA;AAUF,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EASlC,CAAA;AAKD,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA4C5B,CAAA"}
|