From 9fb046a110e38ba79d7ff4e49acfba3fe81de17c Mon Sep 17 00:00:00 2001 From: alexey-metaengage Date: Fri, 24 Jul 2026 00:38:47 +0400 Subject: [PATCH] feat(operations): include source_id in list_pages rows (#3209) --- src/core/operations.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/operations.ts b/src/core/operations.ts index d406d1599..743300685 100644 --- a/src/core/operations.ts +++ b/src/core/operations.ts @@ -1515,6 +1515,7 @@ const list_pages: Operation = { }); return pages.map(pg => ({ slug: pg.slug, + source_id: pg.source_id, type: pg.type, title: pg.title, updated_at: pg.updated_at,