@signetai/core 0.211.17 → 0.212.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/index.js
CHANGED
|
@@ -16432,6 +16432,321 @@ function up137(db) {
|
|
|
16432
16432
|
db.exec(`ALTER TABLE dreaming_passes ADD COLUMN ${name} ${type}`);
|
|
16433
16433
|
}
|
|
16434
16434
|
|
|
16435
|
+
// src/migrations/138-bounded-status-projections.ts
|
|
16436
|
+
function hasColumn25(db, table, column) {
|
|
16437
|
+
const rows = db.prepare(`PRAGMA table_info(${table})`).all();
|
|
16438
|
+
return rows.some((row) => row.name === column);
|
|
16439
|
+
}
|
|
16440
|
+
function addColumnIfMissing27(db, table, column, definition) {
|
|
16441
|
+
if (!hasColumn25(db, table, column))
|
|
16442
|
+
db.exec(`ALTER TABLE ${table} ADD COLUMN ${column} ${definition}`);
|
|
16443
|
+
}
|
|
16444
|
+
function up138(db) {
|
|
16445
|
+
addColumnIfMissing27(db, "memories", "manual_override", "INTEGER DEFAULT 0");
|
|
16446
|
+
db.exec(`
|
|
16447
|
+
CREATE TABLE IF NOT EXISTS transcript_capture_status (
|
|
16448
|
+
agent_id TEXT PRIMARY KEY,
|
|
16449
|
+
pending INTEGER NOT NULL DEFAULT 0,
|
|
16450
|
+
processing INTEGER NOT NULL DEFAULT 0,
|
|
16451
|
+
completed INTEGER NOT NULL DEFAULT 0,
|
|
16452
|
+
failed INTEGER NOT NULL DEFAULT 0,
|
|
16453
|
+
dead INTEGER NOT NULL DEFAULT 0,
|
|
16454
|
+
oldest_pending_at TEXT,
|
|
16455
|
+
last_error TEXT,
|
|
16456
|
+
last_error_at TEXT
|
|
16457
|
+
);
|
|
16458
|
+
|
|
16459
|
+
CREATE INDEX IF NOT EXISTS idx_transcript_capture_jobs_agent_status_created_at
|
|
16460
|
+
ON transcript_capture_jobs(agent_id, status, created_at);
|
|
16461
|
+
|
|
16462
|
+
CREATE INDEX IF NOT EXISTS idx_transcript_capture_jobs_error_updated_at
|
|
16463
|
+
ON transcript_capture_jobs(agent_id, updated_at DESC)
|
|
16464
|
+
WHERE error IS NOT NULL;
|
|
16465
|
+
|
|
16466
|
+
CREATE TABLE IF NOT EXISTS memories_duplicate_hash_counts (
|
|
16467
|
+
content_hash TEXT PRIMARY KEY,
|
|
16468
|
+
dup_count INTEGER NOT NULL
|
|
16469
|
+
);
|
|
16470
|
+
|
|
16471
|
+
CREATE INDEX IF NOT EXISTS idx_memories_dup_counts_active
|
|
16472
|
+
ON memories_duplicate_hash_counts(dup_count)
|
|
16473
|
+
WHERE dup_count > 1;
|
|
16474
|
+
|
|
16475
|
+
CREATE TABLE IF NOT EXISTS memories_diagnostics_state (
|
|
16476
|
+
id INTEGER PRIMARY KEY CHECK (id = 1),
|
|
16477
|
+
total_active INTEGER NOT NULL DEFAULT 0,
|
|
16478
|
+
exact_duplicates INTEGER NOT NULL DEFAULT 0,
|
|
16479
|
+
exact_clusters INTEGER NOT NULL DEFAULT 0
|
|
16480
|
+
);
|
|
16481
|
+
|
|
16482
|
+
CREATE INDEX IF NOT EXISTS idx_memories_active_hash_diagnostics
|
|
16483
|
+
ON memories(content_hash)
|
|
16484
|
+
WHERE is_deleted = 0
|
|
16485
|
+
AND content_hash IS NOT NULL
|
|
16486
|
+
AND pinned = 0
|
|
16487
|
+
AND manual_override = 0;
|
|
16488
|
+
`);
|
|
16489
|
+
db.exec(`
|
|
16490
|
+
CREATE TRIGGER IF NOT EXISTS transcript_capture_status_ai
|
|
16491
|
+
AFTER INSERT ON transcript_capture_jobs
|
|
16492
|
+
BEGIN
|
|
16493
|
+
INSERT INTO transcript_capture_status (agent_id)
|
|
16494
|
+
VALUES (NEW.agent_id)
|
|
16495
|
+
ON CONFLICT(agent_id) DO NOTHING;
|
|
16496
|
+
|
|
16497
|
+
UPDATE transcript_capture_status
|
|
16498
|
+
SET pending = pending + (NEW.status = 'pending'),
|
|
16499
|
+
processing = processing + (NEW.status = 'processing'),
|
|
16500
|
+
completed = completed + (NEW.status = 'completed'),
|
|
16501
|
+
failed = failed + (NEW.status = 'failed'),
|
|
16502
|
+
dead = dead + (NEW.status = 'dead')
|
|
16503
|
+
WHERE agent_id = NEW.agent_id;
|
|
16504
|
+
|
|
16505
|
+
UPDATE transcript_capture_status
|
|
16506
|
+
SET oldest_pending_at = (
|
|
16507
|
+
SELECT MIN(created_at) FROM transcript_capture_jobs
|
|
16508
|
+
WHERE agent_id = NEW.agent_id AND status = 'pending'
|
|
16509
|
+
)
|
|
16510
|
+
WHERE agent_id = NEW.agent_id;
|
|
16511
|
+
|
|
16512
|
+
UPDATE transcript_capture_status
|
|
16513
|
+
SET last_error = (
|
|
16514
|
+
SELECT error FROM transcript_capture_jobs
|
|
16515
|
+
WHERE agent_id = NEW.agent_id AND error IS NOT NULL
|
|
16516
|
+
ORDER BY updated_at DESC LIMIT 1
|
|
16517
|
+
),
|
|
16518
|
+
last_error_at = (
|
|
16519
|
+
SELECT updated_at FROM transcript_capture_jobs
|
|
16520
|
+
WHERE agent_id = NEW.agent_id AND error IS NOT NULL
|
|
16521
|
+
ORDER BY updated_at DESC LIMIT 1
|
|
16522
|
+
)
|
|
16523
|
+
WHERE agent_id = NEW.agent_id
|
|
16524
|
+
AND NEW.error IS NOT NULL;
|
|
16525
|
+
END;
|
|
16526
|
+
|
|
16527
|
+
CREATE TRIGGER IF NOT EXISTS transcript_capture_status_au
|
|
16528
|
+
AFTER UPDATE OF status, error, updated_at, created_at ON transcript_capture_jobs
|
|
16529
|
+
BEGIN
|
|
16530
|
+
UPDATE transcript_capture_status
|
|
16531
|
+
SET pending = pending + (NEW.status = 'pending') - (OLD.status = 'pending'),
|
|
16532
|
+
processing = processing + (NEW.status = 'processing') - (OLD.status = 'processing'),
|
|
16533
|
+
completed = completed + (NEW.status = 'completed') - (OLD.status = 'completed'),
|
|
16534
|
+
failed = failed + (NEW.status = 'failed') - (OLD.status = 'failed'),
|
|
16535
|
+
dead = dead + (NEW.status = 'dead') - (OLD.status = 'dead')
|
|
16536
|
+
WHERE agent_id = NEW.agent_id;
|
|
16537
|
+
|
|
16538
|
+
UPDATE transcript_capture_status
|
|
16539
|
+
SET oldest_pending_at = (
|
|
16540
|
+
SELECT MIN(created_at) FROM transcript_capture_jobs
|
|
16541
|
+
WHERE agent_id = NEW.agent_id AND status = 'pending'
|
|
16542
|
+
)
|
|
16543
|
+
WHERE agent_id = NEW.agent_id;
|
|
16544
|
+
|
|
16545
|
+
UPDATE transcript_capture_status
|
|
16546
|
+
SET last_error = (
|
|
16547
|
+
SELECT error FROM transcript_capture_jobs
|
|
16548
|
+
WHERE agent_id = NEW.agent_id AND error IS NOT NULL
|
|
16549
|
+
ORDER BY updated_at DESC LIMIT 1
|
|
16550
|
+
),
|
|
16551
|
+
last_error_at = (
|
|
16552
|
+
SELECT updated_at FROM transcript_capture_jobs
|
|
16553
|
+
WHERE agent_id = NEW.agent_id AND error IS NOT NULL
|
|
16554
|
+
ORDER BY updated_at DESC LIMIT 1
|
|
16555
|
+
)
|
|
16556
|
+
WHERE agent_id = NEW.agent_id
|
|
16557
|
+
AND (NEW.error IS NOT NULL OR OLD.error IS NOT NULL);
|
|
16558
|
+
END;
|
|
16559
|
+
|
|
16560
|
+
CREATE TRIGGER IF NOT EXISTS transcript_capture_status_ad
|
|
16561
|
+
AFTER DELETE ON transcript_capture_jobs
|
|
16562
|
+
BEGIN
|
|
16563
|
+
UPDATE transcript_capture_status
|
|
16564
|
+
SET pending = pending - (OLD.status = 'pending'),
|
|
16565
|
+
processing = processing - (OLD.status = 'processing'),
|
|
16566
|
+
completed = completed - (OLD.status = 'completed'),
|
|
16567
|
+
failed = failed - (OLD.status = 'failed'),
|
|
16568
|
+
dead = dead - (OLD.status = 'dead')
|
|
16569
|
+
WHERE agent_id = OLD.agent_id;
|
|
16570
|
+
|
|
16571
|
+
UPDATE transcript_capture_status
|
|
16572
|
+
SET oldest_pending_at = (
|
|
16573
|
+
SELECT MIN(created_at) FROM transcript_capture_jobs
|
|
16574
|
+
WHERE agent_id = OLD.agent_id AND status = 'pending'
|
|
16575
|
+
)
|
|
16576
|
+
WHERE agent_id = OLD.agent_id;
|
|
16577
|
+
|
|
16578
|
+
UPDATE transcript_capture_status
|
|
16579
|
+
SET last_error = (
|
|
16580
|
+
SELECT error FROM transcript_capture_jobs
|
|
16581
|
+
WHERE agent_id = OLD.agent_id AND error IS NOT NULL
|
|
16582
|
+
ORDER BY updated_at DESC LIMIT 1
|
|
16583
|
+
),
|
|
16584
|
+
last_error_at = (
|
|
16585
|
+
SELECT updated_at FROM transcript_capture_jobs
|
|
16586
|
+
WHERE agent_id = OLD.agent_id AND error IS NOT NULL
|
|
16587
|
+
ORDER BY updated_at DESC LIMIT 1
|
|
16588
|
+
)
|
|
16589
|
+
WHERE agent_id = OLD.agent_id
|
|
16590
|
+
AND OLD.error IS NOT NULL;
|
|
16591
|
+
END;
|
|
16592
|
+
`);
|
|
16593
|
+
db.exec(`
|
|
16594
|
+
CREATE TRIGGER IF NOT EXISTS memories_dup_projection_ai
|
|
16595
|
+
AFTER INSERT ON memories
|
|
16596
|
+
BEGIN
|
|
16597
|
+
UPDATE memories_diagnostics_state
|
|
16598
|
+
SET total_active = total_active + CASE WHEN NEW.is_deleted = 0 THEN 1 ELSE 0 END,
|
|
16599
|
+
exact_duplicates = exact_duplicates + CASE
|
|
16600
|
+
WHEN NEW.is_deleted = 0 AND NEW.content_hash IS NOT NULL
|
|
16601
|
+
AND NEW.pinned = 0 AND NEW.manual_override = 0
|
|
16602
|
+
AND COALESCE((SELECT dup_count FROM memories_duplicate_hash_counts WHERE content_hash = NEW.content_hash), 0) >= 1
|
|
16603
|
+
THEN 1 ELSE 0 END,
|
|
16604
|
+
exact_clusters = exact_clusters + CASE
|
|
16605
|
+
WHEN NEW.is_deleted = 0 AND NEW.content_hash IS NOT NULL
|
|
16606
|
+
AND NEW.pinned = 0 AND NEW.manual_override = 0
|
|
16607
|
+
AND COALESCE((SELECT dup_count FROM memories_duplicate_hash_counts WHERE content_hash = NEW.content_hash), 0) = 1
|
|
16608
|
+
THEN 1 ELSE 0 END
|
|
16609
|
+
WHERE id = 1;
|
|
16610
|
+
|
|
16611
|
+
INSERT INTO memories_duplicate_hash_counts (content_hash, dup_count)
|
|
16612
|
+
SELECT NEW.content_hash, 1
|
|
16613
|
+
WHERE NEW.is_deleted = 0
|
|
16614
|
+
AND NEW.content_hash IS NOT NULL
|
|
16615
|
+
AND NEW.pinned = 0
|
|
16616
|
+
AND NEW.manual_override = 0
|
|
16617
|
+
ON CONFLICT(content_hash) DO UPDATE SET dup_count = dup_count + 1;
|
|
16618
|
+
END;
|
|
16619
|
+
|
|
16620
|
+
CREATE TRIGGER IF NOT EXISTS memories_dup_projection_au
|
|
16621
|
+
AFTER UPDATE OF is_deleted, content_hash, pinned, manual_override ON memories
|
|
16622
|
+
BEGIN
|
|
16623
|
+
UPDATE memories_diagnostics_state
|
|
16624
|
+
SET total_active = total_active
|
|
16625
|
+
+ CASE WHEN NEW.is_deleted = 0 THEN 1 ELSE 0 END
|
|
16626
|
+
- CASE WHEN OLD.is_deleted = 0 THEN 1 ELSE 0 END,
|
|
16627
|
+
exact_duplicates = exact_duplicates - CASE
|
|
16628
|
+
WHEN OLD.is_deleted = 0 AND OLD.content_hash IS NOT NULL
|
|
16629
|
+
AND OLD.pinned = 0 AND OLD.manual_override = 0
|
|
16630
|
+
AND COALESCE((SELECT dup_count FROM memories_duplicate_hash_counts WHERE content_hash = OLD.content_hash), 0) > 1
|
|
16631
|
+
THEN 1 ELSE 0 END,
|
|
16632
|
+
exact_clusters = exact_clusters - CASE
|
|
16633
|
+
WHEN OLD.is_deleted = 0 AND OLD.content_hash IS NOT NULL
|
|
16634
|
+
AND OLD.pinned = 0 AND OLD.manual_override = 0
|
|
16635
|
+
AND COALESCE((SELECT dup_count FROM memories_duplicate_hash_counts WHERE content_hash = OLD.content_hash), 0) = 2
|
|
16636
|
+
THEN 1 ELSE 0 END
|
|
16637
|
+
WHERE id = 1;
|
|
16638
|
+
|
|
16639
|
+
UPDATE memories_duplicate_hash_counts
|
|
16640
|
+
SET dup_count = dup_count - 1
|
|
16641
|
+
WHERE OLD.is_deleted = 0
|
|
16642
|
+
AND OLD.content_hash IS NOT NULL
|
|
16643
|
+
AND OLD.pinned = 0
|
|
16644
|
+
AND OLD.manual_override = 0
|
|
16645
|
+
AND content_hash = OLD.content_hash;
|
|
16646
|
+
|
|
16647
|
+
DELETE FROM memories_duplicate_hash_counts
|
|
16648
|
+
WHERE content_hash = OLD.content_hash
|
|
16649
|
+
AND dup_count <= 0;
|
|
16650
|
+
|
|
16651
|
+
UPDATE memories_diagnostics_state
|
|
16652
|
+
SET exact_duplicates = exact_duplicates + CASE
|
|
16653
|
+
WHEN NEW.is_deleted = 0 AND NEW.content_hash IS NOT NULL
|
|
16654
|
+
AND NEW.pinned = 0 AND NEW.manual_override = 0
|
|
16655
|
+
AND COALESCE((SELECT dup_count FROM memories_duplicate_hash_counts WHERE content_hash = NEW.content_hash), 0) >= 1
|
|
16656
|
+
THEN 1 ELSE 0 END,
|
|
16657
|
+
exact_clusters = exact_clusters + CASE
|
|
16658
|
+
WHEN NEW.is_deleted = 0 AND NEW.content_hash IS NOT NULL
|
|
16659
|
+
AND NEW.pinned = 0 AND NEW.manual_override = 0
|
|
16660
|
+
AND COALESCE((SELECT dup_count FROM memories_duplicate_hash_counts WHERE content_hash = NEW.content_hash), 0) = 1
|
|
16661
|
+
THEN 1 ELSE 0 END
|
|
16662
|
+
WHERE id = 1;
|
|
16663
|
+
|
|
16664
|
+
INSERT INTO memories_duplicate_hash_counts (content_hash, dup_count)
|
|
16665
|
+
SELECT NEW.content_hash, 1
|
|
16666
|
+
WHERE NEW.is_deleted = 0
|
|
16667
|
+
AND NEW.content_hash IS NOT NULL
|
|
16668
|
+
AND NEW.pinned = 0
|
|
16669
|
+
AND NEW.manual_override = 0
|
|
16670
|
+
ON CONFLICT(content_hash) DO UPDATE SET dup_count = dup_count + 1;
|
|
16671
|
+
END;
|
|
16672
|
+
|
|
16673
|
+
CREATE TRIGGER IF NOT EXISTS memories_dup_projection_ad
|
|
16674
|
+
AFTER DELETE ON memories
|
|
16675
|
+
BEGIN
|
|
16676
|
+
UPDATE memories_diagnostics_state
|
|
16677
|
+
SET total_active = total_active - CASE WHEN OLD.is_deleted = 0 THEN 1 ELSE 0 END,
|
|
16678
|
+
exact_duplicates = exact_duplicates - CASE
|
|
16679
|
+
WHEN OLD.is_deleted = 0 AND OLD.content_hash IS NOT NULL
|
|
16680
|
+
AND OLD.pinned = 0 AND OLD.manual_override = 0
|
|
16681
|
+
AND COALESCE((SELECT dup_count FROM memories_duplicate_hash_counts WHERE content_hash = OLD.content_hash), 0) > 1
|
|
16682
|
+
THEN 1 ELSE 0 END,
|
|
16683
|
+
exact_clusters = exact_clusters - CASE
|
|
16684
|
+
WHEN OLD.is_deleted = 0 AND OLD.content_hash IS NOT NULL
|
|
16685
|
+
AND OLD.pinned = 0 AND OLD.manual_override = 0
|
|
16686
|
+
AND COALESCE((SELECT dup_count FROM memories_duplicate_hash_counts WHERE content_hash = OLD.content_hash), 0) = 2
|
|
16687
|
+
THEN 1 ELSE 0 END
|
|
16688
|
+
WHERE id = 1;
|
|
16689
|
+
|
|
16690
|
+
UPDATE memories_duplicate_hash_counts
|
|
16691
|
+
SET dup_count = dup_count - 1
|
|
16692
|
+
WHERE OLD.is_deleted = 0
|
|
16693
|
+
AND OLD.content_hash IS NOT NULL
|
|
16694
|
+
AND OLD.pinned = 0
|
|
16695
|
+
AND OLD.manual_override = 0
|
|
16696
|
+
AND content_hash = OLD.content_hash;
|
|
16697
|
+
|
|
16698
|
+
DELETE FROM memories_duplicate_hash_counts
|
|
16699
|
+
WHERE content_hash = OLD.content_hash
|
|
16700
|
+
AND dup_count <= 0;
|
|
16701
|
+
END;
|
|
16702
|
+
`);
|
|
16703
|
+
db.exec(`
|
|
16704
|
+
DELETE FROM transcript_capture_status;
|
|
16705
|
+
DELETE FROM memories_duplicate_hash_counts;
|
|
16706
|
+
INSERT INTO memories_duplicate_hash_counts (content_hash, dup_count)
|
|
16707
|
+
SELECT content_hash, COUNT(*)
|
|
16708
|
+
FROM memories
|
|
16709
|
+
WHERE is_deleted = 0
|
|
16710
|
+
AND content_hash IS NOT NULL
|
|
16711
|
+
AND pinned = 0
|
|
16712
|
+
AND manual_override = 0
|
|
16713
|
+
GROUP BY content_hash;
|
|
16714
|
+
|
|
16715
|
+
INSERT INTO memories_diagnostics_state (id, total_active, exact_duplicates, exact_clusters)
|
|
16716
|
+
VALUES (
|
|
16717
|
+
1,
|
|
16718
|
+
(SELECT COUNT(*) FROM memories WHERE is_deleted = 0),
|
|
16719
|
+
COALESCE((SELECT SUM(dup_count - 1) FROM memories_duplicate_hash_counts WHERE dup_count > 1), 0),
|
|
16720
|
+
(SELECT COUNT(*) FROM memories_duplicate_hash_counts WHERE dup_count > 1)
|
|
16721
|
+
)
|
|
16722
|
+
ON CONFLICT(id) DO UPDATE SET
|
|
16723
|
+
total_active = excluded.total_active,
|
|
16724
|
+
exact_duplicates = excluded.exact_duplicates,
|
|
16725
|
+
exact_clusters = excluded.exact_clusters;
|
|
16726
|
+
|
|
16727
|
+
INSERT INTO transcript_capture_status (
|
|
16728
|
+
agent_id, pending, processing, completed, failed, dead,
|
|
16729
|
+
oldest_pending_at, last_error, last_error_at
|
|
16730
|
+
)
|
|
16731
|
+
SELECT
|
|
16732
|
+
j.agent_id,
|
|
16733
|
+
SUM(j.status = 'pending'),
|
|
16734
|
+
SUM(j.status = 'processing'),
|
|
16735
|
+
SUM(j.status = 'completed'),
|
|
16736
|
+
SUM(j.status = 'failed'),
|
|
16737
|
+
SUM(j.status = 'dead'),
|
|
16738
|
+
MIN(CASE WHEN j.status = 'pending' THEN j.created_at END),
|
|
16739
|
+
(SELECT e2.error FROM transcript_capture_jobs e2
|
|
16740
|
+
WHERE e2.agent_id = j.agent_id AND e2.error IS NOT NULL
|
|
16741
|
+
ORDER BY e2.updated_at DESC LIMIT 1),
|
|
16742
|
+
(SELECT e3.updated_at FROM transcript_capture_jobs e3
|
|
16743
|
+
WHERE e3.agent_id = j.agent_id AND e3.error IS NOT NULL
|
|
16744
|
+
ORDER BY e3.updated_at DESC LIMIT 1)
|
|
16745
|
+
FROM transcript_capture_jobs j
|
|
16746
|
+
GROUP BY j.agent_id;
|
|
16747
|
+
`);
|
|
16748
|
+
}
|
|
16749
|
+
|
|
16435
16750
|
// src/migrations/index.ts
|
|
16436
16751
|
var MIGRATIONS = [
|
|
16437
16752
|
{
|
|
@@ -17522,6 +17837,14 @@ var MIGRATIONS = [
|
|
|
17522
17837
|
{ table: "dreaming_passes", column: "head_hash" }
|
|
17523
17838
|
]
|
|
17524
17839
|
}
|
|
17840
|
+
},
|
|
17841
|
+
{
|
|
17842
|
+
version: 138,
|
|
17843
|
+
name: "bounded-status-projections",
|
|
17844
|
+
up: up138,
|
|
17845
|
+
artifacts: {
|
|
17846
|
+
tables: ["transcript_capture_status", "memories_duplicate_hash_counts", "memories_diagnostics_state"]
|
|
17847
|
+
}
|
|
17525
17848
|
}
|
|
17526
17849
|
];
|
|
17527
17850
|
function checksum(m) {
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { MigrationDb } from "./index";
|
|
2
|
+
/**
|
|
3
|
+
* Migration 138: bounded status projections for /api/status and diagnostics.
|
|
4
|
+
*
|
|
5
|
+
* The HTTP-serving isolate previously grouped transcript_capture_jobs and
|
|
6
|
+
* memories directly to calculate compact health fields. Those payload tables
|
|
7
|
+
* can be very large. This migration installs incrementally maintained
|
|
8
|
+
* projections, backfills them once in the migration/owner lane, and adds
|
|
9
|
+
* covering indexes for the remaining maintenance lookups.
|
|
10
|
+
*/
|
|
11
|
+
export declare function up(db: MigrationDb): void;
|
|
12
|
+
//# sourceMappingURL=138-bounded-status-projections.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"138-bounded-status-projections.d.ts","sourceRoot":"","sources":["../../src/migrations/138-bounded-status-projections.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAW3C;;;;;;;;GAQG;AACH,wBAAgB,EAAE,CAAC,EAAE,EAAE,WAAW,GAAG,IAAI,CAyTxC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/migrations/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/migrations/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AA+IH,MAAM,WAAW,WAAW;IAC3B,IAAI,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB,OAAO,CAAC,GAAG,EAAE,MAAM,GAAG;QACrB,GAAG,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE,GAAG,IAAI,CAAC;QAC9B,GAAG,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,CAAC;QAC7D,GAAG,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,CAAC;KACnD,CAAC;CACF;AAED,MAAM,WAAW,kBAAkB;IAClC,QAAQ,CAAC,MAAM,CAAC,EAAE,SAAS,MAAM,EAAE,CAAC;IACpC,QAAQ,CAAC,OAAO,CAAC,EAAE,SAAS;QAC3B,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;QACvB,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC;QACxB,6FAA6F;QAC7F,QAAQ,CAAC,QAAQ,CAAC,EAAE,OAAO,CAAC;KAC5B,EAAE,CAAC;CACJ;AAED,MAAM,WAAW,SAAS;IACzB,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;IACzB,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,EAAE,EAAE,CAAC,EAAE,EAAE,WAAW,KAAK,IAAI,CAAC;IACvC,QAAQ,CAAC,SAAS,CAAC,EAAE,kBAAkB,CAAC;CACxC;AAED,oEAAoE;AACpE,eAAO,MAAM,UAAU,EAAE,SAAS,SAAS,EA6kC1C,CAAC;AAqOF;;;;;;;GAOG;AACH,wBAAgB,oBAAoB,CAAC,EAAE,EAAE,WAAW,GAAG,OAAO,CAiB7D;AAED,6CAA6C;AAC7C,eAAO,MAAM,qBAAqB,QAAkD,CAAC;AAsBrF;;;;;;;;GAQG;AACH,wBAAgB,aAAa,CAAC,EAAE,EAAE,WAAW,GAAG,IAAI,CAiDnD"}
|