@growth-labs/cms 0.5.9 → 0.5.10
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/README.md +17 -1
- package/dist/engine/content-insights.d.ts +11 -4
- package/dist/engine/content-insights.d.ts.map +1 -1
- package/dist/engine/content-insights.js +22 -7
- package/dist/engine/content-insights.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/routes/content-insights.d.ts +1 -1
- package/dist/routes/content-insights.d.ts.map +1 -1
- package/dist/routes/content-insights.js +20 -5
- package/dist/routes/content-insights.js.map +1 -1
- package/dist/schema/index.d.ts +1 -0
- package/dist/schema/index.d.ts.map +1 -1
- package/dist/schema/index.js +1 -0
- package/dist/schema/index.js.map +1 -1
- package/dist/schema/insights-ingest.d.ts +48 -48
- package/dist/schema/migrations.d.ts.map +1 -1
- package/dist/schema/migrations.js +9 -0
- package/dist/schema/migrations.js.map +1 -1
- package/dist/schema/types.d.ts +67 -0
- package/dist/schema/types.d.ts.map +1 -1
- package/dist/schema/types.js +10 -0
- package/dist/schema/types.js.map +1 -1
- package/dist/surveys/schema.d.ts +48 -48
- package/dist/ui/screens/ContentInsightsScreen.d.ts +28 -0
- package/dist/ui/screens/ContentInsightsScreen.d.ts.map +1 -1
- package/dist/ui/screens/ContentInsightsScreen.js +111 -36
- package/dist/ui/screens/ContentInsightsScreen.js.map +1 -1
- package/dist/ui/screens/content-insights-data.d.ts +13 -1
- package/dist/ui/screens/content-insights-data.d.ts.map +1 -1
- package/dist/ui/screens/content-insights-data.js +29 -1
- package/dist/ui/screens/content-insights-data.js.map +1 -1
- package/migrations/0022_content_insight_dismissal_reasons.sql +8 -0
- package/package.json +1 -1
- package/src/engine/content-insights.ts +32 -7
- package/src/index.ts +2 -0
- package/src/routes/content-insights.ts +31 -5
- package/src/schema/index.ts +1 -0
- package/src/schema/migrations.ts +9 -0
- package/src/schema/types.ts +92 -0
- package/src/ui/screens/ContentInsightsScreen.tsx +416 -195
- package/src/ui/screens/content-insights-data.ts +40 -2
|
@@ -250,8 +250,6 @@ export declare const InsightEvidenceDemandSchema: z.ZodObject<{
|
|
|
250
250
|
clicks: number;
|
|
251
251
|
ctr: number;
|
|
252
252
|
trend: number;
|
|
253
|
-
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
254
|
-
coveredBy?: string | null | undefined;
|
|
255
253
|
semantic?: {
|
|
256
254
|
topicalFit: number;
|
|
257
255
|
disposition: "reject" | "judge_only" | "advance";
|
|
@@ -264,6 +262,8 @@ export declare const InsightEvidenceDemandSchema: z.ZodObject<{
|
|
|
264
262
|
similarity: number;
|
|
265
263
|
}[];
|
|
266
264
|
} | undefined;
|
|
265
|
+
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
266
|
+
coveredBy?: string | null | undefined;
|
|
267
267
|
coverageSource?: "page_join" | "semantic" | "lexical" | null | undefined;
|
|
268
268
|
scoreBreakdown?: {
|
|
269
269
|
actualCtr: number;
|
|
@@ -293,8 +293,6 @@ export declare const InsightEvidenceDemandSchema: z.ZodObject<{
|
|
|
293
293
|
clicks: number;
|
|
294
294
|
ctr: number;
|
|
295
295
|
trend: number;
|
|
296
|
-
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
297
|
-
coveredBy?: string | null | undefined;
|
|
298
296
|
semantic?: {
|
|
299
297
|
topicalFit: number;
|
|
300
298
|
disposition: "reject" | "judge_only" | "advance";
|
|
@@ -307,6 +305,8 @@ export declare const InsightEvidenceDemandSchema: z.ZodObject<{
|
|
|
307
305
|
similarity: number;
|
|
308
306
|
}[];
|
|
309
307
|
} | undefined;
|
|
308
|
+
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
309
|
+
coveredBy?: string | null | undefined;
|
|
310
310
|
coverageSource?: "page_join" | "semantic" | "lexical" | null | undefined;
|
|
311
311
|
scoreBreakdown?: {
|
|
312
312
|
actualCtr: number;
|
|
@@ -446,7 +446,6 @@ export declare const InsightEvidenceOpportunitySchema: z.ZodObject<{
|
|
|
446
446
|
}, "strip", z.ZodTypeAny, {
|
|
447
447
|
basis: string;
|
|
448
448
|
source_count: number;
|
|
449
|
-
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
450
449
|
semantic?: {
|
|
451
450
|
topicalFit: number;
|
|
452
451
|
disposition: "reject" | "judge_only" | "advance";
|
|
@@ -459,6 +458,7 @@ export declare const InsightEvidenceOpportunitySchema: z.ZodObject<{
|
|
|
459
458
|
similarity: number;
|
|
460
459
|
}[];
|
|
461
460
|
} | undefined;
|
|
461
|
+
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
462
462
|
scoreBreakdown?: {
|
|
463
463
|
actualCtr: number;
|
|
464
464
|
expectedCtr: number;
|
|
@@ -483,7 +483,6 @@ export declare const InsightEvidenceOpportunitySchema: z.ZodObject<{
|
|
|
483
483
|
}, {
|
|
484
484
|
basis: string;
|
|
485
485
|
source_count: number;
|
|
486
|
-
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
487
486
|
semantic?: {
|
|
488
487
|
topicalFit: number;
|
|
489
488
|
disposition: "reject" | "judge_only" | "advance";
|
|
@@ -496,6 +495,7 @@ export declare const InsightEvidenceOpportunitySchema: z.ZodObject<{
|
|
|
496
495
|
similarity: number;
|
|
497
496
|
}[];
|
|
498
497
|
} | undefined;
|
|
498
|
+
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
499
499
|
scoreBreakdown?: {
|
|
500
500
|
actualCtr: number;
|
|
501
501
|
expectedCtr: number;
|
|
@@ -644,8 +644,6 @@ export declare const InsightEvidenceSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
644
644
|
clicks: number;
|
|
645
645
|
ctr: number;
|
|
646
646
|
trend: number;
|
|
647
|
-
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
648
|
-
coveredBy?: string | null | undefined;
|
|
649
647
|
semantic?: {
|
|
650
648
|
topicalFit: number;
|
|
651
649
|
disposition: "reject" | "judge_only" | "advance";
|
|
@@ -658,6 +656,8 @@ export declare const InsightEvidenceSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
658
656
|
similarity: number;
|
|
659
657
|
}[];
|
|
660
658
|
} | undefined;
|
|
659
|
+
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
660
|
+
coveredBy?: string | null | undefined;
|
|
661
661
|
coverageSource?: "page_join" | "semantic" | "lexical" | null | undefined;
|
|
662
662
|
scoreBreakdown?: {
|
|
663
663
|
actualCtr: number;
|
|
@@ -687,8 +687,6 @@ export declare const InsightEvidenceSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
687
687
|
clicks: number;
|
|
688
688
|
ctr: number;
|
|
689
689
|
trend: number;
|
|
690
|
-
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
691
|
-
coveredBy?: string | null | undefined;
|
|
692
690
|
semantic?: {
|
|
693
691
|
topicalFit: number;
|
|
694
692
|
disposition: "reject" | "judge_only" | "advance";
|
|
@@ -701,6 +699,8 @@ export declare const InsightEvidenceSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
701
699
|
similarity: number;
|
|
702
700
|
}[];
|
|
703
701
|
} | undefined;
|
|
702
|
+
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
703
|
+
coveredBy?: string | null | undefined;
|
|
704
704
|
coverageSource?: "page_join" | "semantic" | "lexical" | null | undefined;
|
|
705
705
|
scoreBreakdown?: {
|
|
706
706
|
actualCtr: number;
|
|
@@ -839,7 +839,6 @@ export declare const InsightEvidenceSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
839
839
|
}, "strip", z.ZodTypeAny, {
|
|
840
840
|
basis: string;
|
|
841
841
|
source_count: number;
|
|
842
|
-
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
843
842
|
semantic?: {
|
|
844
843
|
topicalFit: number;
|
|
845
844
|
disposition: "reject" | "judge_only" | "advance";
|
|
@@ -852,6 +851,7 @@ export declare const InsightEvidenceSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
852
851
|
similarity: number;
|
|
853
852
|
}[];
|
|
854
853
|
} | undefined;
|
|
854
|
+
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
855
855
|
scoreBreakdown?: {
|
|
856
856
|
actualCtr: number;
|
|
857
857
|
expectedCtr: number;
|
|
@@ -876,7 +876,6 @@ export declare const InsightEvidenceSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
876
876
|
}, {
|
|
877
877
|
basis: string;
|
|
878
878
|
source_count: number;
|
|
879
|
-
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
880
879
|
semantic?: {
|
|
881
880
|
topicalFit: number;
|
|
882
881
|
disposition: "reject" | "judge_only" | "advance";
|
|
@@ -889,6 +888,7 @@ export declare const InsightEvidenceSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
889
888
|
similarity: number;
|
|
890
889
|
}[];
|
|
891
890
|
} | undefined;
|
|
891
|
+
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
892
892
|
scoreBreakdown?: {
|
|
893
893
|
actualCtr: number;
|
|
894
894
|
expectedCtr: number;
|
|
@@ -1214,8 +1214,6 @@ export declare const InsightSuggestionRowSchema: z.ZodObject<{
|
|
|
1214
1214
|
clicks: number;
|
|
1215
1215
|
ctr: number;
|
|
1216
1216
|
trend: number;
|
|
1217
|
-
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
1218
|
-
coveredBy?: string | null | undefined;
|
|
1219
1217
|
semantic?: {
|
|
1220
1218
|
topicalFit: number;
|
|
1221
1219
|
disposition: "reject" | "judge_only" | "advance";
|
|
@@ -1228,6 +1226,8 @@ export declare const InsightSuggestionRowSchema: z.ZodObject<{
|
|
|
1228
1226
|
similarity: number;
|
|
1229
1227
|
}[];
|
|
1230
1228
|
} | undefined;
|
|
1229
|
+
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
1230
|
+
coveredBy?: string | null | undefined;
|
|
1231
1231
|
coverageSource?: "page_join" | "semantic" | "lexical" | null | undefined;
|
|
1232
1232
|
scoreBreakdown?: {
|
|
1233
1233
|
actualCtr: number;
|
|
@@ -1257,8 +1257,6 @@ export declare const InsightSuggestionRowSchema: z.ZodObject<{
|
|
|
1257
1257
|
clicks: number;
|
|
1258
1258
|
ctr: number;
|
|
1259
1259
|
trend: number;
|
|
1260
|
-
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
1261
|
-
coveredBy?: string | null | undefined;
|
|
1262
1260
|
semantic?: {
|
|
1263
1261
|
topicalFit: number;
|
|
1264
1262
|
disposition: "reject" | "judge_only" | "advance";
|
|
@@ -1271,6 +1269,8 @@ export declare const InsightSuggestionRowSchema: z.ZodObject<{
|
|
|
1271
1269
|
similarity: number;
|
|
1272
1270
|
}[];
|
|
1273
1271
|
} | undefined;
|
|
1272
|
+
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
1273
|
+
coveredBy?: string | null | undefined;
|
|
1274
1274
|
coverageSource?: "page_join" | "semantic" | "lexical" | null | undefined;
|
|
1275
1275
|
scoreBreakdown?: {
|
|
1276
1276
|
actualCtr: number;
|
|
@@ -1409,7 +1409,6 @@ export declare const InsightSuggestionRowSchema: z.ZodObject<{
|
|
|
1409
1409
|
}, "strip", z.ZodTypeAny, {
|
|
1410
1410
|
basis: string;
|
|
1411
1411
|
source_count: number;
|
|
1412
|
-
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
1413
1412
|
semantic?: {
|
|
1414
1413
|
topicalFit: number;
|
|
1415
1414
|
disposition: "reject" | "judge_only" | "advance";
|
|
@@ -1422,6 +1421,7 @@ export declare const InsightSuggestionRowSchema: z.ZodObject<{
|
|
|
1422
1421
|
similarity: number;
|
|
1423
1422
|
}[];
|
|
1424
1423
|
} | undefined;
|
|
1424
|
+
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
1425
1425
|
scoreBreakdown?: {
|
|
1426
1426
|
actualCtr: number;
|
|
1427
1427
|
expectedCtr: number;
|
|
@@ -1446,7 +1446,6 @@ export declare const InsightSuggestionRowSchema: z.ZodObject<{
|
|
|
1446
1446
|
}, {
|
|
1447
1447
|
basis: string;
|
|
1448
1448
|
source_count: number;
|
|
1449
|
-
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
1450
1449
|
semantic?: {
|
|
1451
1450
|
topicalFit: number;
|
|
1452
1451
|
disposition: "reject" | "judge_only" | "advance";
|
|
@@ -1459,6 +1458,7 @@ export declare const InsightSuggestionRowSchema: z.ZodObject<{
|
|
|
1459
1458
|
similarity: number;
|
|
1460
1459
|
}[];
|
|
1461
1460
|
} | undefined;
|
|
1461
|
+
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
1462
1462
|
scoreBreakdown?: {
|
|
1463
1463
|
actualCtr: number;
|
|
1464
1464
|
expectedCtr: number;
|
|
@@ -1646,8 +1646,6 @@ export declare const InsightSuggestionRowSchema: z.ZodObject<{
|
|
|
1646
1646
|
clicks: number;
|
|
1647
1647
|
ctr: number;
|
|
1648
1648
|
trend: number;
|
|
1649
|
-
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
1650
|
-
coveredBy?: string | null | undefined;
|
|
1651
1649
|
semantic?: {
|
|
1652
1650
|
topicalFit: number;
|
|
1653
1651
|
disposition: "reject" | "judge_only" | "advance";
|
|
@@ -1660,6 +1658,8 @@ export declare const InsightSuggestionRowSchema: z.ZodObject<{
|
|
|
1660
1658
|
similarity: number;
|
|
1661
1659
|
}[];
|
|
1662
1660
|
} | undefined;
|
|
1661
|
+
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
1662
|
+
coveredBy?: string | null | undefined;
|
|
1663
1663
|
coverageSource?: "page_join" | "semantic" | "lexical" | null | undefined;
|
|
1664
1664
|
scoreBreakdown?: {
|
|
1665
1665
|
actualCtr: number;
|
|
@@ -1685,7 +1685,6 @@ export declare const InsightSuggestionRowSchema: z.ZodObject<{
|
|
|
1685
1685
|
} | {
|
|
1686
1686
|
basis: string;
|
|
1687
1687
|
source_count: number;
|
|
1688
|
-
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
1689
1688
|
semantic?: {
|
|
1690
1689
|
topicalFit: number;
|
|
1691
1690
|
disposition: "reject" | "judge_only" | "advance";
|
|
@@ -1698,6 +1697,7 @@ export declare const InsightSuggestionRowSchema: z.ZodObject<{
|
|
|
1698
1697
|
similarity: number;
|
|
1699
1698
|
}[];
|
|
1700
1699
|
} | undefined;
|
|
1700
|
+
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
1701
1701
|
scoreBreakdown?: {
|
|
1702
1702
|
actualCtr: number;
|
|
1703
1703
|
expectedCtr: number;
|
|
@@ -1769,8 +1769,6 @@ export declare const InsightSuggestionRowSchema: z.ZodObject<{
|
|
|
1769
1769
|
clicks: number;
|
|
1770
1770
|
ctr: number;
|
|
1771
1771
|
trend: number;
|
|
1772
|
-
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
1773
|
-
coveredBy?: string | null | undefined;
|
|
1774
1772
|
semantic?: {
|
|
1775
1773
|
topicalFit: number;
|
|
1776
1774
|
disposition: "reject" | "judge_only" | "advance";
|
|
@@ -1783,6 +1781,8 @@ export declare const InsightSuggestionRowSchema: z.ZodObject<{
|
|
|
1783
1781
|
similarity: number;
|
|
1784
1782
|
}[];
|
|
1785
1783
|
} | undefined;
|
|
1784
|
+
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
1785
|
+
coveredBy?: string | null | undefined;
|
|
1786
1786
|
coverageSource?: "page_join" | "semantic" | "lexical" | null | undefined;
|
|
1787
1787
|
scoreBreakdown?: {
|
|
1788
1788
|
actualCtr: number;
|
|
@@ -1808,7 +1808,6 @@ export declare const InsightSuggestionRowSchema: z.ZodObject<{
|
|
|
1808
1808
|
} | {
|
|
1809
1809
|
basis: string;
|
|
1810
1810
|
source_count: number;
|
|
1811
|
-
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
1812
1811
|
semantic?: {
|
|
1813
1812
|
topicalFit: number;
|
|
1814
1813
|
disposition: "reject" | "judge_only" | "advance";
|
|
@@ -1821,6 +1820,7 @@ export declare const InsightSuggestionRowSchema: z.ZodObject<{
|
|
|
1821
1820
|
similarity: number;
|
|
1822
1821
|
}[];
|
|
1823
1822
|
} | undefined;
|
|
1823
|
+
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
1824
1824
|
scoreBreakdown?: {
|
|
1825
1825
|
actualCtr: number;
|
|
1826
1826
|
expectedCtr: number;
|
|
@@ -2111,8 +2111,6 @@ export declare const InsightsIngestPayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2111
2111
|
clicks: number;
|
|
2112
2112
|
ctr: number;
|
|
2113
2113
|
trend: number;
|
|
2114
|
-
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
2115
|
-
coveredBy?: string | null | undefined;
|
|
2116
2114
|
semantic?: {
|
|
2117
2115
|
topicalFit: number;
|
|
2118
2116
|
disposition: "reject" | "judge_only" | "advance";
|
|
@@ -2125,6 +2123,8 @@ export declare const InsightsIngestPayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2125
2123
|
similarity: number;
|
|
2126
2124
|
}[];
|
|
2127
2125
|
} | undefined;
|
|
2126
|
+
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
2127
|
+
coveredBy?: string | null | undefined;
|
|
2128
2128
|
coverageSource?: "page_join" | "semantic" | "lexical" | null | undefined;
|
|
2129
2129
|
scoreBreakdown?: {
|
|
2130
2130
|
actualCtr: number;
|
|
@@ -2154,8 +2154,6 @@ export declare const InsightsIngestPayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2154
2154
|
clicks: number;
|
|
2155
2155
|
ctr: number;
|
|
2156
2156
|
trend: number;
|
|
2157
|
-
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
2158
|
-
coveredBy?: string | null | undefined;
|
|
2159
2157
|
semantic?: {
|
|
2160
2158
|
topicalFit: number;
|
|
2161
2159
|
disposition: "reject" | "judge_only" | "advance";
|
|
@@ -2168,6 +2166,8 @@ export declare const InsightsIngestPayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2168
2166
|
similarity: number;
|
|
2169
2167
|
}[];
|
|
2170
2168
|
} | undefined;
|
|
2169
|
+
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
2170
|
+
coveredBy?: string | null | undefined;
|
|
2171
2171
|
coverageSource?: "page_join" | "semantic" | "lexical" | null | undefined;
|
|
2172
2172
|
scoreBreakdown?: {
|
|
2173
2173
|
actualCtr: number;
|
|
@@ -2306,7 +2306,6 @@ export declare const InsightsIngestPayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2306
2306
|
}, "strip", z.ZodTypeAny, {
|
|
2307
2307
|
basis: string;
|
|
2308
2308
|
source_count: number;
|
|
2309
|
-
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
2310
2309
|
semantic?: {
|
|
2311
2310
|
topicalFit: number;
|
|
2312
2311
|
disposition: "reject" | "judge_only" | "advance";
|
|
@@ -2319,6 +2318,7 @@ export declare const InsightsIngestPayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2319
2318
|
similarity: number;
|
|
2320
2319
|
}[];
|
|
2321
2320
|
} | undefined;
|
|
2321
|
+
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
2322
2322
|
scoreBreakdown?: {
|
|
2323
2323
|
actualCtr: number;
|
|
2324
2324
|
expectedCtr: number;
|
|
@@ -2343,7 +2343,6 @@ export declare const InsightsIngestPayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2343
2343
|
}, {
|
|
2344
2344
|
basis: string;
|
|
2345
2345
|
source_count: number;
|
|
2346
|
-
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
2347
2346
|
semantic?: {
|
|
2348
2347
|
topicalFit: number;
|
|
2349
2348
|
disposition: "reject" | "judge_only" | "advance";
|
|
@@ -2356,6 +2355,7 @@ export declare const InsightsIngestPayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2356
2355
|
similarity: number;
|
|
2357
2356
|
}[];
|
|
2358
2357
|
} | undefined;
|
|
2358
|
+
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
2359
2359
|
scoreBreakdown?: {
|
|
2360
2360
|
actualCtr: number;
|
|
2361
2361
|
expectedCtr: number;
|
|
@@ -2543,8 +2543,6 @@ export declare const InsightsIngestPayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2543
2543
|
clicks: number;
|
|
2544
2544
|
ctr: number;
|
|
2545
2545
|
trend: number;
|
|
2546
|
-
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
2547
|
-
coveredBy?: string | null | undefined;
|
|
2548
2546
|
semantic?: {
|
|
2549
2547
|
topicalFit: number;
|
|
2550
2548
|
disposition: "reject" | "judge_only" | "advance";
|
|
@@ -2557,6 +2555,8 @@ export declare const InsightsIngestPayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2557
2555
|
similarity: number;
|
|
2558
2556
|
}[];
|
|
2559
2557
|
} | undefined;
|
|
2558
|
+
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
2559
|
+
coveredBy?: string | null | undefined;
|
|
2560
2560
|
coverageSource?: "page_join" | "semantic" | "lexical" | null | undefined;
|
|
2561
2561
|
scoreBreakdown?: {
|
|
2562
2562
|
actualCtr: number;
|
|
@@ -2582,7 +2582,6 @@ export declare const InsightsIngestPayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2582
2582
|
} | {
|
|
2583
2583
|
basis: string;
|
|
2584
2584
|
source_count: number;
|
|
2585
|
-
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
2586
2585
|
semantic?: {
|
|
2587
2586
|
topicalFit: number;
|
|
2588
2587
|
disposition: "reject" | "judge_only" | "advance";
|
|
@@ -2595,6 +2594,7 @@ export declare const InsightsIngestPayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2595
2594
|
similarity: number;
|
|
2596
2595
|
}[];
|
|
2597
2596
|
} | undefined;
|
|
2597
|
+
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
2598
2598
|
scoreBreakdown?: {
|
|
2599
2599
|
actualCtr: number;
|
|
2600
2600
|
expectedCtr: number;
|
|
@@ -2666,8 +2666,6 @@ export declare const InsightsIngestPayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2666
2666
|
clicks: number;
|
|
2667
2667
|
ctr: number;
|
|
2668
2668
|
trend: number;
|
|
2669
|
-
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
2670
|
-
coveredBy?: string | null | undefined;
|
|
2671
2669
|
semantic?: {
|
|
2672
2670
|
topicalFit: number;
|
|
2673
2671
|
disposition: "reject" | "judge_only" | "advance";
|
|
@@ -2680,6 +2678,8 @@ export declare const InsightsIngestPayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2680
2678
|
similarity: number;
|
|
2681
2679
|
}[];
|
|
2682
2680
|
} | undefined;
|
|
2681
|
+
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
2682
|
+
coveredBy?: string | null | undefined;
|
|
2683
2683
|
coverageSource?: "page_join" | "semantic" | "lexical" | null | undefined;
|
|
2684
2684
|
scoreBreakdown?: {
|
|
2685
2685
|
actualCtr: number;
|
|
@@ -2705,7 +2705,6 @@ export declare const InsightsIngestPayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2705
2705
|
} | {
|
|
2706
2706
|
basis: string;
|
|
2707
2707
|
source_count: number;
|
|
2708
|
-
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
2709
2708
|
semantic?: {
|
|
2710
2709
|
topicalFit: number;
|
|
2711
2710
|
disposition: "reject" | "judge_only" | "advance";
|
|
@@ -2718,6 +2717,7 @@ export declare const InsightsIngestPayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2718
2717
|
similarity: number;
|
|
2719
2718
|
}[];
|
|
2720
2719
|
} | undefined;
|
|
2720
|
+
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
2721
2721
|
scoreBreakdown?: {
|
|
2722
2722
|
actualCtr: number;
|
|
2723
2723
|
expectedCtr: number;
|
|
@@ -2806,8 +2806,6 @@ export declare const InsightsIngestPayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2806
2806
|
clicks: number;
|
|
2807
2807
|
ctr: number;
|
|
2808
2808
|
trend: number;
|
|
2809
|
-
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
2810
|
-
coveredBy?: string | null | undefined;
|
|
2811
2809
|
semantic?: {
|
|
2812
2810
|
topicalFit: number;
|
|
2813
2811
|
disposition: "reject" | "judge_only" | "advance";
|
|
@@ -2820,6 +2818,8 @@ export declare const InsightsIngestPayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2820
2818
|
similarity: number;
|
|
2821
2819
|
}[];
|
|
2822
2820
|
} | undefined;
|
|
2821
|
+
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
2822
|
+
coveredBy?: string | null | undefined;
|
|
2823
2823
|
coverageSource?: "page_join" | "semantic" | "lexical" | null | undefined;
|
|
2824
2824
|
scoreBreakdown?: {
|
|
2825
2825
|
actualCtr: number;
|
|
@@ -2845,7 +2845,6 @@ export declare const InsightsIngestPayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2845
2845
|
} | {
|
|
2846
2846
|
basis: string;
|
|
2847
2847
|
source_count: number;
|
|
2848
|
-
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
2849
2848
|
semantic?: {
|
|
2850
2849
|
topicalFit: number;
|
|
2851
2850
|
disposition: "reject" | "judge_only" | "advance";
|
|
@@ -2858,6 +2857,7 @@ export declare const InsightsIngestPayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2858
2857
|
similarity: number;
|
|
2859
2858
|
}[];
|
|
2860
2859
|
} | undefined;
|
|
2860
|
+
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
2861
2861
|
scoreBreakdown?: {
|
|
2862
2862
|
actualCtr: number;
|
|
2863
2863
|
expectedCtr: number;
|
|
@@ -2946,8 +2946,6 @@ export declare const InsightsIngestPayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2946
2946
|
clicks: number;
|
|
2947
2947
|
ctr: number;
|
|
2948
2948
|
trend: number;
|
|
2949
|
-
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
2950
|
-
coveredBy?: string | null | undefined;
|
|
2951
2949
|
semantic?: {
|
|
2952
2950
|
topicalFit: number;
|
|
2953
2951
|
disposition: "reject" | "judge_only" | "advance";
|
|
@@ -2960,6 +2958,8 @@ export declare const InsightsIngestPayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2960
2958
|
similarity: number;
|
|
2961
2959
|
}[];
|
|
2962
2960
|
} | undefined;
|
|
2961
|
+
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
2962
|
+
coveredBy?: string | null | undefined;
|
|
2963
2963
|
coverageSource?: "page_join" | "semantic" | "lexical" | null | undefined;
|
|
2964
2964
|
scoreBreakdown?: {
|
|
2965
2965
|
actualCtr: number;
|
|
@@ -2985,7 +2985,6 @@ export declare const InsightsIngestPayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2985
2985
|
} | {
|
|
2986
2986
|
basis: string;
|
|
2987
2987
|
source_count: number;
|
|
2988
|
-
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
2989
2988
|
semantic?: {
|
|
2990
2989
|
topicalFit: number;
|
|
2991
2990
|
disposition: "reject" | "judge_only" | "advance";
|
|
@@ -2998,6 +2997,7 @@ export declare const InsightsIngestPayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2998
2997
|
similarity: number;
|
|
2999
2998
|
}[];
|
|
3000
2999
|
} | undefined;
|
|
3000
|
+
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
3001
3001
|
scoreBreakdown?: {
|
|
3002
3002
|
actualCtr: number;
|
|
3003
3003
|
expectedCtr: number;
|
|
@@ -3086,8 +3086,6 @@ export declare const InsightsIngestPayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3086
3086
|
clicks: number;
|
|
3087
3087
|
ctr: number;
|
|
3088
3088
|
trend: number;
|
|
3089
|
-
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
3090
|
-
coveredBy?: string | null | undefined;
|
|
3091
3089
|
semantic?: {
|
|
3092
3090
|
topicalFit: number;
|
|
3093
3091
|
disposition: "reject" | "judge_only" | "advance";
|
|
@@ -3100,6 +3098,8 @@ export declare const InsightsIngestPayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3100
3098
|
similarity: number;
|
|
3101
3099
|
}[];
|
|
3102
3100
|
} | undefined;
|
|
3101
|
+
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
3102
|
+
coveredBy?: string | null | undefined;
|
|
3103
3103
|
coverageSource?: "page_join" | "semantic" | "lexical" | null | undefined;
|
|
3104
3104
|
scoreBreakdown?: {
|
|
3105
3105
|
actualCtr: number;
|
|
@@ -3125,7 +3125,6 @@ export declare const InsightsIngestPayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3125
3125
|
} | {
|
|
3126
3126
|
basis: string;
|
|
3127
3127
|
source_count: number;
|
|
3128
|
-
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
3129
3128
|
semantic?: {
|
|
3130
3129
|
topicalFit: number;
|
|
3131
3130
|
disposition: "reject" | "judge_only" | "advance";
|
|
@@ -3138,6 +3137,7 @@ export declare const InsightsIngestPayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3138
3137
|
similarity: number;
|
|
3139
3138
|
}[];
|
|
3140
3139
|
} | undefined;
|
|
3140
|
+
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
3141
3141
|
scoreBreakdown?: {
|
|
3142
3142
|
actualCtr: number;
|
|
3143
3143
|
expectedCtr: number;
|
|
@@ -3226,8 +3226,6 @@ export declare const InsightsIngestPayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3226
3226
|
clicks: number;
|
|
3227
3227
|
ctr: number;
|
|
3228
3228
|
trend: number;
|
|
3229
|
-
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
3230
|
-
coveredBy?: string | null | undefined;
|
|
3231
3229
|
semantic?: {
|
|
3232
3230
|
topicalFit: number;
|
|
3233
3231
|
disposition: "reject" | "judge_only" | "advance";
|
|
@@ -3240,6 +3238,8 @@ export declare const InsightsIngestPayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3240
3238
|
similarity: number;
|
|
3241
3239
|
}[];
|
|
3242
3240
|
} | undefined;
|
|
3241
|
+
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
3242
|
+
coveredBy?: string | null | undefined;
|
|
3243
3243
|
coverageSource?: "page_join" | "semantic" | "lexical" | null | undefined;
|
|
3244
3244
|
scoreBreakdown?: {
|
|
3245
3245
|
actualCtr: number;
|
|
@@ -3265,7 +3265,6 @@ export declare const InsightsIngestPayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3265
3265
|
} | {
|
|
3266
3266
|
basis: string;
|
|
3267
3267
|
source_count: number;
|
|
3268
|
-
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
3269
3268
|
semantic?: {
|
|
3270
3269
|
topicalFit: number;
|
|
3271
3270
|
disposition: "reject" | "judge_only" | "advance";
|
|
@@ -3278,6 +3277,7 @@ export declare const InsightsIngestPayloadSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3278
3277
|
similarity: number;
|
|
3279
3278
|
}[];
|
|
3280
3279
|
} | undefined;
|
|
3280
|
+
lane?: "commission" | "refresh" | "optimize-ctr" | "consolidate" | "monitor" | undefined;
|
|
3281
3281
|
scoreBreakdown?: {
|
|
3282
3282
|
actualCtr: number;
|
|
3283
3283
|
expectedCtr: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"migrations.d.ts","sourceRoot":"","sources":["../../src/schema/migrations.ts"],"names":[],"mappings":"AAYA;;;;;;;;GAQG;AACH,eAAO,MAAM,iBAAiB,mzKAyJ7B,CAAA;AAED;;;;GAIG;AACH,wBAAgB,eAAe,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,EAAE,CAKrD;AAED,iFAAiF;AACjF,UAAU,MAAM;IACf,IAAI,CAAC,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,CAAA;CACrC;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,eAAO,MAAM,wBAAwB,EAAE;IAAE,EAAE,EAAE,MAAM,CAAC;IAAC,GAAG,EAAE,MAAM,CAAA;CAAE,
|
|
1
|
+
{"version":3,"file":"migrations.d.ts","sourceRoot":"","sources":["../../src/schema/migrations.ts"],"names":[],"mappings":"AAYA;;;;;;;;GAQG;AACH,eAAO,MAAM,iBAAiB,mzKAyJ7B,CAAA;AAED;;;;GAIG;AACH,wBAAgB,eAAe,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,EAAE,CAKrD;AAED,iFAAiF;AACjF,UAAU,MAAM;IACf,IAAI,CAAC,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,CAAA;CACrC;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,eAAO,MAAM,wBAAwB,EAAE;IAAE,EAAE,EAAE,MAAM,CAAC;IAAC,GAAG,EAAE,MAAM,CAAA;CAAE,EAglBjE,CAAA;AAED;;;;;;GAMG;AACH,wBAAsB,eAAe,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAW/D;AAED,YAAY,EAAE,YAAY,EAAE,MAAM,aAAa,CAAA;AAG/C,OAAO,EAAE,UAAU,EAAE,MAAM,aAAa,CAAA"}
|
|
@@ -794,6 +794,15 @@ WHERE operation = 'publish' AND target_published_at IS NULL;
|
|
|
794
794
|
sql: `
|
|
795
795
|
CREATE INDEX IF NOT EXISTS idx_content_revisions_published_slug
|
|
796
796
|
ON content_revisions(json_extract(payload_json, '$.item.slug'));
|
|
797
|
+
`,
|
|
798
|
+
},
|
|
799
|
+
{
|
|
800
|
+
id: '0022_content_insight_dismissal_reasons',
|
|
801
|
+
sql: `
|
|
802
|
+
ALTER TABLE content_insight_dismissals
|
|
803
|
+
ADD COLUMN reason_code TEXT CHECK (reason_code IS NULL OR reason_code IN ('off_topic', 'already_covered', 'cant_win', 'wrong_format', 'not_now', 'other'));
|
|
804
|
+
ALTER TABLE content_insight_dismissals
|
|
805
|
+
ADD COLUMN note TEXT CHECK (note IS NULL OR length(note) <= 500);
|
|
797
806
|
`,
|
|
798
807
|
},
|
|
799
808
|
];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"migrations.js","sourceRoot":"","sources":["../../src/schema/migrations.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"migrations.js","sourceRoot":"","sources":["../../src/schema/migrations.ts"],"names":[],"mappings":"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"}
|