vibora 2.6.2 → 2.7.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.
@@ -0,0 +1,515 @@
1
+ {
2
+ "version": "6",
3
+ "dialect": "sqlite",
4
+ "id": "3aca0e47-6fc8-4c62-86e6-b895403b2f62",
5
+ "prevId": "d418675d-b5b7-4189-97c5-28682dd3fa3f",
6
+ "tables": {
7
+ "repositories": {
8
+ "name": "repositories",
9
+ "columns": {
10
+ "id": {
11
+ "name": "id",
12
+ "type": "text",
13
+ "primaryKey": true,
14
+ "notNull": true,
15
+ "autoincrement": false
16
+ },
17
+ "path": {
18
+ "name": "path",
19
+ "type": "text",
20
+ "primaryKey": false,
21
+ "notNull": true,
22
+ "autoincrement": false
23
+ },
24
+ "display_name": {
25
+ "name": "display_name",
26
+ "type": "text",
27
+ "primaryKey": false,
28
+ "notNull": true,
29
+ "autoincrement": false
30
+ },
31
+ "startup_script": {
32
+ "name": "startup_script",
33
+ "type": "text",
34
+ "primaryKey": false,
35
+ "notNull": false,
36
+ "autoincrement": false
37
+ },
38
+ "copy_files": {
39
+ "name": "copy_files",
40
+ "type": "text",
41
+ "primaryKey": false,
42
+ "notNull": false,
43
+ "autoincrement": false
44
+ },
45
+ "remote_url": {
46
+ "name": "remote_url",
47
+ "type": "text",
48
+ "primaryKey": false,
49
+ "notNull": false,
50
+ "autoincrement": false
51
+ },
52
+ "is_copier_template": {
53
+ "name": "is_copier_template",
54
+ "type": "integer",
55
+ "primaryKey": false,
56
+ "notNull": false,
57
+ "autoincrement": false,
58
+ "default": false
59
+ },
60
+ "last_used_at": {
61
+ "name": "last_used_at",
62
+ "type": "text",
63
+ "primaryKey": false,
64
+ "notNull": false,
65
+ "autoincrement": false
66
+ },
67
+ "created_at": {
68
+ "name": "created_at",
69
+ "type": "text",
70
+ "primaryKey": false,
71
+ "notNull": true,
72
+ "autoincrement": false
73
+ },
74
+ "updated_at": {
75
+ "name": "updated_at",
76
+ "type": "text",
77
+ "primaryKey": false,
78
+ "notNull": true,
79
+ "autoincrement": false
80
+ }
81
+ },
82
+ "indexes": {
83
+ "repositories_path_unique": {
84
+ "name": "repositories_path_unique",
85
+ "columns": [
86
+ "path"
87
+ ],
88
+ "isUnique": true
89
+ }
90
+ },
91
+ "foreignKeys": {},
92
+ "compositePrimaryKeys": {},
93
+ "uniqueConstraints": {},
94
+ "checkConstraints": {}
95
+ },
96
+ "system_metrics": {
97
+ "name": "system_metrics",
98
+ "columns": {
99
+ "id": {
100
+ "name": "id",
101
+ "type": "integer",
102
+ "primaryKey": true,
103
+ "notNull": true,
104
+ "autoincrement": true
105
+ },
106
+ "timestamp": {
107
+ "name": "timestamp",
108
+ "type": "integer",
109
+ "primaryKey": false,
110
+ "notNull": true,
111
+ "autoincrement": false
112
+ },
113
+ "cpu_percent": {
114
+ "name": "cpu_percent",
115
+ "type": "real",
116
+ "primaryKey": false,
117
+ "notNull": true,
118
+ "autoincrement": false
119
+ },
120
+ "memory_used_bytes": {
121
+ "name": "memory_used_bytes",
122
+ "type": "integer",
123
+ "primaryKey": false,
124
+ "notNull": true,
125
+ "autoincrement": false
126
+ },
127
+ "memory_total_bytes": {
128
+ "name": "memory_total_bytes",
129
+ "type": "integer",
130
+ "primaryKey": false,
131
+ "notNull": true,
132
+ "autoincrement": false
133
+ },
134
+ "memory_cache_bytes": {
135
+ "name": "memory_cache_bytes",
136
+ "type": "integer",
137
+ "primaryKey": false,
138
+ "notNull": true,
139
+ "autoincrement": false,
140
+ "default": 0
141
+ },
142
+ "disk_used_bytes": {
143
+ "name": "disk_used_bytes",
144
+ "type": "integer",
145
+ "primaryKey": false,
146
+ "notNull": true,
147
+ "autoincrement": false
148
+ },
149
+ "disk_total_bytes": {
150
+ "name": "disk_total_bytes",
151
+ "type": "integer",
152
+ "primaryKey": false,
153
+ "notNull": true,
154
+ "autoincrement": false
155
+ }
156
+ },
157
+ "indexes": {},
158
+ "foreignKeys": {},
159
+ "compositePrimaryKeys": {},
160
+ "uniqueConstraints": {},
161
+ "checkConstraints": {}
162
+ },
163
+ "tasks": {
164
+ "name": "tasks",
165
+ "columns": {
166
+ "id": {
167
+ "name": "id",
168
+ "type": "text",
169
+ "primaryKey": true,
170
+ "notNull": true,
171
+ "autoincrement": false
172
+ },
173
+ "title": {
174
+ "name": "title",
175
+ "type": "text",
176
+ "primaryKey": false,
177
+ "notNull": true,
178
+ "autoincrement": false
179
+ },
180
+ "description": {
181
+ "name": "description",
182
+ "type": "text",
183
+ "primaryKey": false,
184
+ "notNull": false,
185
+ "autoincrement": false
186
+ },
187
+ "status": {
188
+ "name": "status",
189
+ "type": "text",
190
+ "primaryKey": false,
191
+ "notNull": true,
192
+ "autoincrement": false,
193
+ "default": "'IN_PROGRESS'"
194
+ },
195
+ "position": {
196
+ "name": "position",
197
+ "type": "integer",
198
+ "primaryKey": false,
199
+ "notNull": true,
200
+ "autoincrement": false
201
+ },
202
+ "repo_path": {
203
+ "name": "repo_path",
204
+ "type": "text",
205
+ "primaryKey": false,
206
+ "notNull": true,
207
+ "autoincrement": false
208
+ },
209
+ "repo_name": {
210
+ "name": "repo_name",
211
+ "type": "text",
212
+ "primaryKey": false,
213
+ "notNull": true,
214
+ "autoincrement": false
215
+ },
216
+ "base_branch": {
217
+ "name": "base_branch",
218
+ "type": "text",
219
+ "primaryKey": false,
220
+ "notNull": true,
221
+ "autoincrement": false
222
+ },
223
+ "branch": {
224
+ "name": "branch",
225
+ "type": "text",
226
+ "primaryKey": false,
227
+ "notNull": false,
228
+ "autoincrement": false
229
+ },
230
+ "worktree_path": {
231
+ "name": "worktree_path",
232
+ "type": "text",
233
+ "primaryKey": false,
234
+ "notNull": false,
235
+ "autoincrement": false
236
+ },
237
+ "view_state": {
238
+ "name": "view_state",
239
+ "type": "text",
240
+ "primaryKey": false,
241
+ "notNull": false,
242
+ "autoincrement": false
243
+ },
244
+ "pr_url": {
245
+ "name": "pr_url",
246
+ "type": "text",
247
+ "primaryKey": false,
248
+ "notNull": false,
249
+ "autoincrement": false
250
+ },
251
+ "linear_ticket_id": {
252
+ "name": "linear_ticket_id",
253
+ "type": "text",
254
+ "primaryKey": false,
255
+ "notNull": false,
256
+ "autoincrement": false
257
+ },
258
+ "linear_ticket_url": {
259
+ "name": "linear_ticket_url",
260
+ "type": "text",
261
+ "primaryKey": false,
262
+ "notNull": false,
263
+ "autoincrement": false
264
+ },
265
+ "startup_script": {
266
+ "name": "startup_script",
267
+ "type": "text",
268
+ "primaryKey": false,
269
+ "notNull": false,
270
+ "autoincrement": false
271
+ },
272
+ "created_at": {
273
+ "name": "created_at",
274
+ "type": "text",
275
+ "primaryKey": false,
276
+ "notNull": true,
277
+ "autoincrement": false
278
+ },
279
+ "updated_at": {
280
+ "name": "updated_at",
281
+ "type": "text",
282
+ "primaryKey": false,
283
+ "notNull": true,
284
+ "autoincrement": false
285
+ }
286
+ },
287
+ "indexes": {},
288
+ "foreignKeys": {},
289
+ "compositePrimaryKeys": {},
290
+ "uniqueConstraints": {},
291
+ "checkConstraints": {}
292
+ },
293
+ "terminal_tabs": {
294
+ "name": "terminal_tabs",
295
+ "columns": {
296
+ "id": {
297
+ "name": "id",
298
+ "type": "text",
299
+ "primaryKey": true,
300
+ "notNull": true,
301
+ "autoincrement": false
302
+ },
303
+ "name": {
304
+ "name": "name",
305
+ "type": "text",
306
+ "primaryKey": false,
307
+ "notNull": true,
308
+ "autoincrement": false
309
+ },
310
+ "position": {
311
+ "name": "position",
312
+ "type": "integer",
313
+ "primaryKey": false,
314
+ "notNull": true,
315
+ "autoincrement": false,
316
+ "default": 0
317
+ },
318
+ "created_at": {
319
+ "name": "created_at",
320
+ "type": "text",
321
+ "primaryKey": false,
322
+ "notNull": true,
323
+ "autoincrement": false
324
+ },
325
+ "updated_at": {
326
+ "name": "updated_at",
327
+ "type": "text",
328
+ "primaryKey": false,
329
+ "notNull": true,
330
+ "autoincrement": false
331
+ }
332
+ },
333
+ "indexes": {},
334
+ "foreignKeys": {},
335
+ "compositePrimaryKeys": {},
336
+ "uniqueConstraints": {},
337
+ "checkConstraints": {}
338
+ },
339
+ "terminal_view_state": {
340
+ "name": "terminal_view_state",
341
+ "columns": {
342
+ "id": {
343
+ "name": "id",
344
+ "type": "text",
345
+ "primaryKey": true,
346
+ "notNull": true,
347
+ "autoincrement": false,
348
+ "default": "'singleton'"
349
+ },
350
+ "active_tab_id": {
351
+ "name": "active_tab_id",
352
+ "type": "text",
353
+ "primaryKey": false,
354
+ "notNull": false,
355
+ "autoincrement": false
356
+ },
357
+ "focused_terminals": {
358
+ "name": "focused_terminals",
359
+ "type": "text",
360
+ "primaryKey": false,
361
+ "notNull": false,
362
+ "autoincrement": false
363
+ },
364
+ "current_view": {
365
+ "name": "current_view",
366
+ "type": "text",
367
+ "primaryKey": false,
368
+ "notNull": false,
369
+ "autoincrement": false
370
+ },
371
+ "current_task_id": {
372
+ "name": "current_task_id",
373
+ "type": "text",
374
+ "primaryKey": false,
375
+ "notNull": false,
376
+ "autoincrement": false
377
+ },
378
+ "is_tab_visible": {
379
+ "name": "is_tab_visible",
380
+ "type": "integer",
381
+ "primaryKey": false,
382
+ "notNull": false,
383
+ "autoincrement": false
384
+ },
385
+ "view_updated_at": {
386
+ "name": "view_updated_at",
387
+ "type": "text",
388
+ "primaryKey": false,
389
+ "notNull": false,
390
+ "autoincrement": false
391
+ },
392
+ "updated_at": {
393
+ "name": "updated_at",
394
+ "type": "text",
395
+ "primaryKey": false,
396
+ "notNull": true,
397
+ "autoincrement": false
398
+ }
399
+ },
400
+ "indexes": {},
401
+ "foreignKeys": {},
402
+ "compositePrimaryKeys": {},
403
+ "uniqueConstraints": {},
404
+ "checkConstraints": {}
405
+ },
406
+ "terminals": {
407
+ "name": "terminals",
408
+ "columns": {
409
+ "id": {
410
+ "name": "id",
411
+ "type": "text",
412
+ "primaryKey": true,
413
+ "notNull": true,
414
+ "autoincrement": false
415
+ },
416
+ "name": {
417
+ "name": "name",
418
+ "type": "text",
419
+ "primaryKey": false,
420
+ "notNull": true,
421
+ "autoincrement": false
422
+ },
423
+ "cwd": {
424
+ "name": "cwd",
425
+ "type": "text",
426
+ "primaryKey": false,
427
+ "notNull": true,
428
+ "autoincrement": false
429
+ },
430
+ "cols": {
431
+ "name": "cols",
432
+ "type": "integer",
433
+ "primaryKey": false,
434
+ "notNull": true,
435
+ "autoincrement": false,
436
+ "default": 80
437
+ },
438
+ "rows": {
439
+ "name": "rows",
440
+ "type": "integer",
441
+ "primaryKey": false,
442
+ "notNull": true,
443
+ "autoincrement": false,
444
+ "default": 24
445
+ },
446
+ "tmux_session": {
447
+ "name": "tmux_session",
448
+ "type": "text",
449
+ "primaryKey": false,
450
+ "notNull": true,
451
+ "autoincrement": false
452
+ },
453
+ "status": {
454
+ "name": "status",
455
+ "type": "text",
456
+ "primaryKey": false,
457
+ "notNull": true,
458
+ "autoincrement": false,
459
+ "default": "'running'"
460
+ },
461
+ "exit_code": {
462
+ "name": "exit_code",
463
+ "type": "integer",
464
+ "primaryKey": false,
465
+ "notNull": false,
466
+ "autoincrement": false
467
+ },
468
+ "tab_id": {
469
+ "name": "tab_id",
470
+ "type": "text",
471
+ "primaryKey": false,
472
+ "notNull": false,
473
+ "autoincrement": false
474
+ },
475
+ "position_in_tab": {
476
+ "name": "position_in_tab",
477
+ "type": "integer",
478
+ "primaryKey": false,
479
+ "notNull": false,
480
+ "autoincrement": false,
481
+ "default": 0
482
+ },
483
+ "created_at": {
484
+ "name": "created_at",
485
+ "type": "text",
486
+ "primaryKey": false,
487
+ "notNull": true,
488
+ "autoincrement": false
489
+ },
490
+ "updated_at": {
491
+ "name": "updated_at",
492
+ "type": "text",
493
+ "primaryKey": false,
494
+ "notNull": true,
495
+ "autoincrement": false
496
+ }
497
+ },
498
+ "indexes": {},
499
+ "foreignKeys": {},
500
+ "compositePrimaryKeys": {},
501
+ "uniqueConstraints": {},
502
+ "checkConstraints": {}
503
+ }
504
+ },
505
+ "views": {},
506
+ "enums": {},
507
+ "_meta": {
508
+ "schemas": {},
509
+ "tables": {},
510
+ "columns": {}
511
+ },
512
+ "internal": {
513
+ "indexes": {}
514
+ }
515
+ }