@kernhq/module-tracker 0.11.4 → 0.11.6
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/server/router.d.ts +2261 -133
- package/dist/server/router.d.ts.map +1 -1
- package/migrations/0000_init.sql +96 -96
- package/migrations/0001_rls.sql +64 -0
- package/migrations/0002_field_keys_unique.sql +1 -1
- package/package.json +5 -5
package/migrations/0001_rls.sql
CHANGED
|
@@ -6,6 +6,8 @@ alter table "mod_tracker"."projects" enable row level security;
|
|
|
6
6
|
--> statement-breakpoint
|
|
7
7
|
alter table "mod_tracker"."projects" force row level security;
|
|
8
8
|
--> statement-breakpoint
|
|
9
|
+
drop policy if exists "projects_ws_isolation" on "mod_tracker"."projects";
|
|
10
|
+
--> statement-breakpoint
|
|
9
11
|
create policy "projects_ws_isolation" on "mod_tracker"."projects"
|
|
10
12
|
using (workspace_id::text = current_setting('app.workspace_id', true))
|
|
11
13
|
with check (workspace_id::text = current_setting('app.workspace_id', true));
|
|
@@ -14,6 +16,8 @@ alter table "mod_tracker"."issue_counters" enable row level security;
|
|
|
14
16
|
--> statement-breakpoint
|
|
15
17
|
alter table "mod_tracker"."issue_counters" force row level security;
|
|
16
18
|
--> statement-breakpoint
|
|
19
|
+
drop policy if exists "issue_counters_ws_isolation" on "mod_tracker"."issue_counters";
|
|
20
|
+
--> statement-breakpoint
|
|
17
21
|
create policy "issue_counters_ws_isolation" on "mod_tracker"."issue_counters"
|
|
18
22
|
using (workspace_id::text = current_setting('app.workspace_id', true))
|
|
19
23
|
with check (workspace_id::text = current_setting('app.workspace_id', true));
|
|
@@ -22,6 +26,8 @@ alter table "mod_tracker"."project_members" enable row level security;
|
|
|
22
26
|
--> statement-breakpoint
|
|
23
27
|
alter table "mod_tracker"."project_members" force row level security;
|
|
24
28
|
--> statement-breakpoint
|
|
29
|
+
drop policy if exists "project_members_ws_isolation" on "mod_tracker"."project_members";
|
|
30
|
+
--> statement-breakpoint
|
|
25
31
|
create policy "project_members_ws_isolation" on "mod_tracker"."project_members"
|
|
26
32
|
using (workspace_id::text = current_setting('app.workspace_id', true))
|
|
27
33
|
with check (workspace_id::text = current_setting('app.workspace_id', true));
|
|
@@ -30,6 +36,8 @@ alter table "mod_tracker"."project_templates" enable row level security;
|
|
|
30
36
|
--> statement-breakpoint
|
|
31
37
|
alter table "mod_tracker"."project_templates" force row level security;
|
|
32
38
|
--> statement-breakpoint
|
|
39
|
+
drop policy if exists "project_templates_ws_isolation" on "mod_tracker"."project_templates";
|
|
40
|
+
--> statement-breakpoint
|
|
33
41
|
create policy "project_templates_ws_isolation" on "mod_tracker"."project_templates"
|
|
34
42
|
using (workspace_id::text = current_setting('app.workspace_id', true))
|
|
35
43
|
with check (workspace_id::text = current_setting('app.workspace_id', true));
|
|
@@ -38,6 +46,8 @@ alter table "mod_tracker"."work_item_types" enable row level security;
|
|
|
38
46
|
--> statement-breakpoint
|
|
39
47
|
alter table "mod_tracker"."work_item_types" force row level security;
|
|
40
48
|
--> statement-breakpoint
|
|
49
|
+
drop policy if exists "work_item_types_ws_isolation" on "mod_tracker"."work_item_types";
|
|
50
|
+
--> statement-breakpoint
|
|
41
51
|
create policy "work_item_types_ws_isolation" on "mod_tracker"."work_item_types"
|
|
42
52
|
using (workspace_id::text = current_setting('app.workspace_id', true))
|
|
43
53
|
with check (workspace_id::text = current_setting('app.workspace_id', true));
|
|
@@ -46,6 +56,8 @@ alter table "mod_tracker"."type_schemes" enable row level security;
|
|
|
46
56
|
--> statement-breakpoint
|
|
47
57
|
alter table "mod_tracker"."type_schemes" force row level security;
|
|
48
58
|
--> statement-breakpoint
|
|
59
|
+
drop policy if exists "type_schemes_ws_isolation" on "mod_tracker"."type_schemes";
|
|
60
|
+
--> statement-breakpoint
|
|
49
61
|
create policy "type_schemes_ws_isolation" on "mod_tracker"."type_schemes"
|
|
50
62
|
using (workspace_id::text = current_setting('app.workspace_id', true))
|
|
51
63
|
with check (workspace_id::text = current_setting('app.workspace_id', true));
|
|
@@ -54,6 +66,8 @@ alter table "mod_tracker"."hierarchy_rules" enable row level security;
|
|
|
54
66
|
--> statement-breakpoint
|
|
55
67
|
alter table "mod_tracker"."hierarchy_rules" force row level security;
|
|
56
68
|
--> statement-breakpoint
|
|
69
|
+
drop policy if exists "hierarchy_rules_ws_isolation" on "mod_tracker"."hierarchy_rules";
|
|
70
|
+
--> statement-breakpoint
|
|
57
71
|
create policy "hierarchy_rules_ws_isolation" on "mod_tracker"."hierarchy_rules"
|
|
58
72
|
using (workspace_id::text = current_setting('app.workspace_id', true))
|
|
59
73
|
with check (workspace_id::text = current_setting('app.workspace_id', true));
|
|
@@ -62,6 +76,8 @@ alter table "mod_tracker"."field_defs" enable row level security;
|
|
|
62
76
|
--> statement-breakpoint
|
|
63
77
|
alter table "mod_tracker"."field_defs" force row level security;
|
|
64
78
|
--> statement-breakpoint
|
|
79
|
+
drop policy if exists "field_defs_ws_isolation" on "mod_tracker"."field_defs";
|
|
80
|
+
--> statement-breakpoint
|
|
65
81
|
create policy "field_defs_ws_isolation" on "mod_tracker"."field_defs"
|
|
66
82
|
using (workspace_id::text = current_setting('app.workspace_id', true))
|
|
67
83
|
with check (workspace_id::text = current_setting('app.workspace_id', true));
|
|
@@ -70,6 +86,8 @@ alter table "mod_tracker"."field_schemes" enable row level security;
|
|
|
70
86
|
--> statement-breakpoint
|
|
71
87
|
alter table "mod_tracker"."field_schemes" force row level security;
|
|
72
88
|
--> statement-breakpoint
|
|
89
|
+
drop policy if exists "field_schemes_ws_isolation" on "mod_tracker"."field_schemes";
|
|
90
|
+
--> statement-breakpoint
|
|
73
91
|
create policy "field_schemes_ws_isolation" on "mod_tracker"."field_schemes"
|
|
74
92
|
using (workspace_id::text = current_setting('app.workspace_id', true))
|
|
75
93
|
with check (workspace_id::text = current_setting('app.workspace_id', true));
|
|
@@ -78,6 +96,8 @@ alter table "mod_tracker"."workflows" enable row level security;
|
|
|
78
96
|
--> statement-breakpoint
|
|
79
97
|
alter table "mod_tracker"."workflows" force row level security;
|
|
80
98
|
--> statement-breakpoint
|
|
99
|
+
drop policy if exists "workflows_ws_isolation" on "mod_tracker"."workflows";
|
|
100
|
+
--> statement-breakpoint
|
|
81
101
|
create policy "workflows_ws_isolation" on "mod_tracker"."workflows"
|
|
82
102
|
using (workspace_id::text = current_setting('app.workspace_id', true))
|
|
83
103
|
with check (workspace_id::text = current_setting('app.workspace_id', true));
|
|
@@ -86,6 +106,8 @@ alter table "mod_tracker"."workflow_schemes" enable row level security;
|
|
|
86
106
|
--> statement-breakpoint
|
|
87
107
|
alter table "mod_tracker"."workflow_schemes" force row level security;
|
|
88
108
|
--> statement-breakpoint
|
|
109
|
+
drop policy if exists "workflow_schemes_ws_isolation" on "mod_tracker"."workflow_schemes";
|
|
110
|
+
--> statement-breakpoint
|
|
89
111
|
create policy "workflow_schemes_ws_isolation" on "mod_tracker"."workflow_schemes"
|
|
90
112
|
using (workspace_id::text = current_setting('app.workspace_id', true))
|
|
91
113
|
with check (workspace_id::text = current_setting('app.workspace_id', true));
|
|
@@ -94,6 +116,8 @@ alter table "mod_tracker"."issues" enable row level security;
|
|
|
94
116
|
--> statement-breakpoint
|
|
95
117
|
alter table "mod_tracker"."issues" force row level security;
|
|
96
118
|
--> statement-breakpoint
|
|
119
|
+
drop policy if exists "issues_ws_isolation" on "mod_tracker"."issues";
|
|
120
|
+
--> statement-breakpoint
|
|
97
121
|
create policy "issues_ws_isolation" on "mod_tracker"."issues"
|
|
98
122
|
using (workspace_id::text = current_setting('app.workspace_id', true))
|
|
99
123
|
with check (workspace_id::text = current_setting('app.workspace_id', true));
|
|
@@ -102,6 +126,8 @@ alter table "mod_tracker"."comments" enable row level security;
|
|
|
102
126
|
--> statement-breakpoint
|
|
103
127
|
alter table "mod_tracker"."comments" force row level security;
|
|
104
128
|
--> statement-breakpoint
|
|
129
|
+
drop policy if exists "comments_ws_isolation" on "mod_tracker"."comments";
|
|
130
|
+
--> statement-breakpoint
|
|
105
131
|
create policy "comments_ws_isolation" on "mod_tracker"."comments"
|
|
106
132
|
using (workspace_id::text = current_setting('app.workspace_id', true))
|
|
107
133
|
with check (workspace_id::text = current_setting('app.workspace_id', true));
|
|
@@ -110,6 +136,8 @@ alter table "mod_tracker"."comment_reactions" enable row level security;
|
|
|
110
136
|
--> statement-breakpoint
|
|
111
137
|
alter table "mod_tracker"."comment_reactions" force row level security;
|
|
112
138
|
--> statement-breakpoint
|
|
139
|
+
drop policy if exists "comment_reactions_ws_isolation" on "mod_tracker"."comment_reactions";
|
|
140
|
+
--> statement-breakpoint
|
|
113
141
|
create policy "comment_reactions_ws_isolation" on "mod_tracker"."comment_reactions"
|
|
114
142
|
using (workspace_id::text = current_setting('app.workspace_id', true))
|
|
115
143
|
with check (workspace_id::text = current_setting('app.workspace_id', true));
|
|
@@ -118,6 +146,8 @@ alter table "mod_tracker"."relations" enable row level security;
|
|
|
118
146
|
--> statement-breakpoint
|
|
119
147
|
alter table "mod_tracker"."relations" force row level security;
|
|
120
148
|
--> statement-breakpoint
|
|
149
|
+
drop policy if exists "relations_ws_isolation" on "mod_tracker"."relations";
|
|
150
|
+
--> statement-breakpoint
|
|
121
151
|
create policy "relations_ws_isolation" on "mod_tracker"."relations"
|
|
122
152
|
using (workspace_id::text = current_setting('app.workspace_id', true))
|
|
123
153
|
with check (workspace_id::text = current_setting('app.workspace_id', true));
|
|
@@ -126,6 +156,8 @@ alter table "mod_tracker"."attachments" enable row level security;
|
|
|
126
156
|
--> statement-breakpoint
|
|
127
157
|
alter table "mod_tracker"."attachments" force row level security;
|
|
128
158
|
--> statement-breakpoint
|
|
159
|
+
drop policy if exists "attachments_ws_isolation" on "mod_tracker"."attachments";
|
|
160
|
+
--> statement-breakpoint
|
|
129
161
|
create policy "attachments_ws_isolation" on "mod_tracker"."attachments"
|
|
130
162
|
using (workspace_id::text = current_setting('app.workspace_id', true))
|
|
131
163
|
with check (workspace_id::text = current_setting('app.workspace_id', true));
|
|
@@ -134,6 +166,8 @@ alter table "mod_tracker"."links" enable row level security;
|
|
|
134
166
|
--> statement-breakpoint
|
|
135
167
|
alter table "mod_tracker"."links" force row level security;
|
|
136
168
|
--> statement-breakpoint
|
|
169
|
+
drop policy if exists "links_ws_isolation" on "mod_tracker"."links";
|
|
170
|
+
--> statement-breakpoint
|
|
137
171
|
create policy "links_ws_isolation" on "mod_tracker"."links"
|
|
138
172
|
using (workspace_id::text = current_setting('app.workspace_id', true))
|
|
139
173
|
with check (workspace_id::text = current_setting('app.workspace_id', true));
|
|
@@ -142,6 +176,8 @@ alter table "mod_tracker"."issue_history" enable row level security;
|
|
|
142
176
|
--> statement-breakpoint
|
|
143
177
|
alter table "mod_tracker"."issue_history" force row level security;
|
|
144
178
|
--> statement-breakpoint
|
|
179
|
+
drop policy if exists "issue_history_ws_isolation" on "mod_tracker"."issue_history";
|
|
180
|
+
--> statement-breakpoint
|
|
145
181
|
create policy "issue_history_ws_isolation" on "mod_tracker"."issue_history"
|
|
146
182
|
using (workspace_id::text = current_setting('app.workspace_id', true))
|
|
147
183
|
with check (workspace_id::text = current_setting('app.workspace_id', true));
|
|
@@ -150,6 +186,8 @@ alter table "mod_tracker"."issue_status_history" enable row level security;
|
|
|
150
186
|
--> statement-breakpoint
|
|
151
187
|
alter table "mod_tracker"."issue_status_history" force row level security;
|
|
152
188
|
--> statement-breakpoint
|
|
189
|
+
drop policy if exists "issue_status_history_ws_isolation" on "mod_tracker"."issue_status_history";
|
|
190
|
+
--> statement-breakpoint
|
|
153
191
|
create policy "issue_status_history_ws_isolation" on "mod_tracker"."issue_status_history"
|
|
154
192
|
using (workspace_id::text = current_setting('app.workspace_id', true))
|
|
155
193
|
with check (workspace_id::text = current_setting('app.workspace_id', true));
|
|
@@ -158,6 +196,8 @@ alter table "mod_tracker"."issue_approvals" enable row level security;
|
|
|
158
196
|
--> statement-breakpoint
|
|
159
197
|
alter table "mod_tracker"."issue_approvals" force row level security;
|
|
160
198
|
--> statement-breakpoint
|
|
199
|
+
drop policy if exists "issue_approvals_ws_isolation" on "mod_tracker"."issue_approvals";
|
|
200
|
+
--> statement-breakpoint
|
|
161
201
|
create policy "issue_approvals_ws_isolation" on "mod_tracker"."issue_approvals"
|
|
162
202
|
using (workspace_id::text = current_setting('app.workspace_id', true))
|
|
163
203
|
with check (workspace_id::text = current_setting('app.workspace_id', true));
|
|
@@ -166,6 +206,8 @@ alter table "mod_tracker"."issue_templates" enable row level security;
|
|
|
166
206
|
--> statement-breakpoint
|
|
167
207
|
alter table "mod_tracker"."issue_templates" force row level security;
|
|
168
208
|
--> statement-breakpoint
|
|
209
|
+
drop policy if exists "issue_templates_ws_isolation" on "mod_tracker"."issue_templates";
|
|
210
|
+
--> statement-breakpoint
|
|
169
211
|
create policy "issue_templates_ws_isolation" on "mod_tracker"."issue_templates"
|
|
170
212
|
using (workspace_id::text = current_setting('app.workspace_id', true))
|
|
171
213
|
with check (workspace_id::text = current_setting('app.workspace_id', true));
|
|
@@ -174,6 +216,8 @@ alter table "mod_tracker"."recurring_issues" enable row level security;
|
|
|
174
216
|
--> statement-breakpoint
|
|
175
217
|
alter table "mod_tracker"."recurring_issues" force row level security;
|
|
176
218
|
--> statement-breakpoint
|
|
219
|
+
drop policy if exists "recurring_issues_ws_isolation" on "mod_tracker"."recurring_issues";
|
|
220
|
+
--> statement-breakpoint
|
|
177
221
|
create policy "recurring_issues_ws_isolation" on "mod_tracker"."recurring_issues"
|
|
178
222
|
using (workspace_id::text = current_setting('app.workspace_id', true))
|
|
179
223
|
with check (workspace_id::text = current_setting('app.workspace_id', true));
|
|
@@ -182,6 +226,8 @@ alter table "mod_tracker"."cycles" enable row level security;
|
|
|
182
226
|
--> statement-breakpoint
|
|
183
227
|
alter table "mod_tracker"."cycles" force row level security;
|
|
184
228
|
--> statement-breakpoint
|
|
229
|
+
drop policy if exists "cycles_ws_isolation" on "mod_tracker"."cycles";
|
|
230
|
+
--> statement-breakpoint
|
|
185
231
|
create policy "cycles_ws_isolation" on "mod_tracker"."cycles"
|
|
186
232
|
using (workspace_id::text = current_setting('app.workspace_id', true))
|
|
187
233
|
with check (workspace_id::text = current_setting('app.workspace_id', true));
|
|
@@ -190,6 +236,8 @@ alter table "mod_tracker"."milestones" enable row level security;
|
|
|
190
236
|
--> statement-breakpoint
|
|
191
237
|
alter table "mod_tracker"."milestones" force row level security;
|
|
192
238
|
--> statement-breakpoint
|
|
239
|
+
drop policy if exists "milestones_ws_isolation" on "mod_tracker"."milestones";
|
|
240
|
+
--> statement-breakpoint
|
|
193
241
|
create policy "milestones_ws_isolation" on "mod_tracker"."milestones"
|
|
194
242
|
using (workspace_id::text = current_setting('app.workspace_id', true))
|
|
195
243
|
with check (workspace_id::text = current_setting('app.workspace_id', true));
|
|
@@ -198,6 +246,8 @@ alter table "mod_tracker"."versions" enable row level security;
|
|
|
198
246
|
--> statement-breakpoint
|
|
199
247
|
alter table "mod_tracker"."versions" force row level security;
|
|
200
248
|
--> statement-breakpoint
|
|
249
|
+
drop policy if exists "versions_ws_isolation" on "mod_tracker"."versions";
|
|
250
|
+
--> statement-breakpoint
|
|
201
251
|
create policy "versions_ws_isolation" on "mod_tracker"."versions"
|
|
202
252
|
using (workspace_id::text = current_setting('app.workspace_id', true))
|
|
203
253
|
with check (workspace_id::text = current_setting('app.workspace_id', true));
|
|
@@ -206,6 +256,8 @@ alter table "mod_tracker"."components" enable row level security;
|
|
|
206
256
|
--> statement-breakpoint
|
|
207
257
|
alter table "mod_tracker"."components" force row level security;
|
|
208
258
|
--> statement-breakpoint
|
|
259
|
+
drop policy if exists "components_ws_isolation" on "mod_tracker"."components";
|
|
260
|
+
--> statement-breakpoint
|
|
209
261
|
create policy "components_ws_isolation" on "mod_tracker"."components"
|
|
210
262
|
using (workspace_id::text = current_setting('app.workspace_id', true))
|
|
211
263
|
with check (workspace_id::text = current_setting('app.workspace_id', true));
|
|
@@ -214,6 +266,8 @@ alter table "mod_tracker"."labels" enable row level security;
|
|
|
214
266
|
--> statement-breakpoint
|
|
215
267
|
alter table "mod_tracker"."labels" force row level security;
|
|
216
268
|
--> statement-breakpoint
|
|
269
|
+
drop policy if exists "labels_ws_isolation" on "mod_tracker"."labels";
|
|
270
|
+
--> statement-breakpoint
|
|
217
271
|
create policy "labels_ws_isolation" on "mod_tracker"."labels"
|
|
218
272
|
using (workspace_id::text = current_setting('app.workspace_id', true))
|
|
219
273
|
with check (workspace_id::text = current_setting('app.workspace_id', true));
|
|
@@ -222,6 +276,8 @@ alter table "mod_tracker"."views" enable row level security;
|
|
|
222
276
|
--> statement-breakpoint
|
|
223
277
|
alter table "mod_tracker"."views" force row level security;
|
|
224
278
|
--> statement-breakpoint
|
|
279
|
+
drop policy if exists "views_ws_isolation" on "mod_tracker"."views";
|
|
280
|
+
--> statement-breakpoint
|
|
225
281
|
create policy "views_ws_isolation" on "mod_tracker"."views"
|
|
226
282
|
using (workspace_id::text = current_setting('app.workspace_id', true))
|
|
227
283
|
with check (workspace_id::text = current_setting('app.workspace_id', true));
|
|
@@ -230,6 +286,8 @@ alter table "mod_tracker"."view_pins" enable row level security;
|
|
|
230
286
|
--> statement-breakpoint
|
|
231
287
|
alter table "mod_tracker"."view_pins" force row level security;
|
|
232
288
|
--> statement-breakpoint
|
|
289
|
+
drop policy if exists "view_pins_ws_isolation" on "mod_tracker"."view_pins";
|
|
290
|
+
--> statement-breakpoint
|
|
233
291
|
create policy "view_pins_ws_isolation" on "mod_tracker"."view_pins"
|
|
234
292
|
using (workspace_id::text = current_setting('app.workspace_id', true))
|
|
235
293
|
with check (workspace_id::text = current_setting('app.workspace_id', true));
|
|
@@ -238,6 +296,8 @@ alter table "mod_tracker"."worklogs" enable row level security;
|
|
|
238
296
|
--> statement-breakpoint
|
|
239
297
|
alter table "mod_tracker"."worklogs" force row level security;
|
|
240
298
|
--> statement-breakpoint
|
|
299
|
+
drop policy if exists "worklogs_ws_isolation" on "mod_tracker"."worklogs";
|
|
300
|
+
--> statement-breakpoint
|
|
241
301
|
create policy "worklogs_ws_isolation" on "mod_tracker"."worklogs"
|
|
242
302
|
using (workspace_id::text = current_setting('app.workspace_id', true))
|
|
243
303
|
with check (workspace_id::text = current_setting('app.workspace_id', true));
|
|
@@ -246,6 +306,8 @@ alter table "mod_tracker"."timers" enable row level security;
|
|
|
246
306
|
--> statement-breakpoint
|
|
247
307
|
alter table "mod_tracker"."timers" force row level security;
|
|
248
308
|
--> statement-breakpoint
|
|
309
|
+
drop policy if exists "timers_ws_isolation" on "mod_tracker"."timers";
|
|
310
|
+
--> statement-breakpoint
|
|
249
311
|
create policy "timers_ws_isolation" on "mod_tracker"."timers"
|
|
250
312
|
using (workspace_id::text = current_setting('app.workspace_id', true))
|
|
251
313
|
with check (workspace_id::text = current_setting('app.workspace_id', true));
|
|
@@ -254,6 +316,8 @@ alter table "mod_tracker"."import_jobs" enable row level security;
|
|
|
254
316
|
--> statement-breakpoint
|
|
255
317
|
alter table "mod_tracker"."import_jobs" force row level security;
|
|
256
318
|
--> statement-breakpoint
|
|
319
|
+
drop policy if exists "import_jobs_ws_isolation" on "mod_tracker"."import_jobs";
|
|
320
|
+
--> statement-breakpoint
|
|
257
321
|
create policy "import_jobs_ws_isolation" on "mod_tracker"."import_jobs"
|
|
258
322
|
using (workspace_id::text = current_setting('app.workspace_id', true))
|
|
259
323
|
with check (workspace_id::text = current_setting('app.workspace_id', true));
|
|
@@ -32,4 +32,4 @@ end $$;
|
|
|
32
32
|
--> statement-breakpoint
|
|
33
33
|
DROP INDEX IF EXISTS "mod_tracker"."field_defs_ws_project_key_uq";--> statement-breakpoint
|
|
34
34
|
DROP INDEX IF EXISTS "mod_tracker"."field_defs_ws_key_uq";--> statement-breakpoint
|
|
35
|
-
CREATE UNIQUE INDEX "field_defs_ws_key_uq" ON "mod_tracker"."field_defs" USING btree ("workspace_id","key");
|
|
35
|
+
CREATE UNIQUE INDEX IF NOT EXISTS "field_defs_ws_key_uq" ON "mod_tracker"."field_defs" USING btree ("workspace_id","key");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kernhq/module-tracker",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.6",
|
|
4
4
|
"description": "Kern tracker module: projects, work item types, custom fields, workflows, issues, KQL, cycles, views, reports, intake, time tracking (server + client skeleton)",
|
|
5
5
|
"homepage": "https://github.com/KernAIO/module-tracker#readme",
|
|
6
6
|
"license": "AGPL-3.0-only",
|
|
@@ -59,10 +59,10 @@
|
|
|
59
59
|
"devDependencies": {
|
|
60
60
|
"@biomejs/biome": "^2.0.0",
|
|
61
61
|
"@changesets/cli": "^2.27.0",
|
|
62
|
-
"@kernhq/contracts": "^0.
|
|
62
|
+
"@kernhq/contracts": "^0.6.1",
|
|
63
63
|
"@kernhq/kernel": "^0.7.0",
|
|
64
64
|
"@kernhq/tsconfig": "^0.1.0",
|
|
65
|
-
"@kernhq/ui": "^0.
|
|
65
|
+
"@kernhq/ui": "^0.10.0",
|
|
66
66
|
"@tanstack/svelte-query": "^6.1.0",
|
|
67
67
|
"@types/node": "^24.0.0",
|
|
68
68
|
"@types/pg": "^8.15.0",
|
|
@@ -74,9 +74,9 @@
|
|
|
74
74
|
"vitest": "^4.0.0"
|
|
75
75
|
},
|
|
76
76
|
"peerDependencies": {
|
|
77
|
-
"@kernhq/contracts": "^0.
|
|
77
|
+
"@kernhq/contracts": "^0.6.1",
|
|
78
78
|
"@kernhq/kernel": "^0.7.0",
|
|
79
|
-
"@kernhq/ui": "^0.
|
|
79
|
+
"@kernhq/ui": "^0.10.0",
|
|
80
80
|
"@tanstack/svelte-query": "^6.1.0",
|
|
81
81
|
"svelte": "^5.46.0"
|
|
82
82
|
},
|