From 5b2565df2cb2cf8cde4a89f88e0fc6d2ea440924 Mon Sep 17 00:00:00 2001 From: Tomi Tavela Date: Sat, 26 Oct 2024 22:38:51 +0300 Subject: [PATCH] added missing exports to graph/presets/all --- packages/graph/presets/all.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/packages/graph/presets/all.ts b/packages/graph/presets/all.ts index 6c08ef8c8..cd5690c71 100644 --- a/packages/graph/presets/all.ts +++ b/packages/graph/presets/all.ts @@ -1,7 +1,9 @@ +import "../index.js"; import "../admin/index.js"; import "../analytics/index.js"; import "../appCatalog/index.js"; import "../attachments/index.js"; +import "../bookings/index.js"; import "../calendars/index.js"; import "../cloud-communications/index.js"; import "../columns/index.js"; @@ -29,13 +31,16 @@ import "../shares/index.js"; import "../sites/index.js"; import "../subscriptions/index.js"; import "../taxonomy/index.js"; +import "../teams/index.js"; import "../to-do/index.js"; import "../users/index.js"; +export * from "../index.js"; export * from "../admin/index.js"; export * from "../analytics/index.js"; export * from "../appCatalog/index.js"; export * from "../attachments/index.js"; +export * from "../bookings/index.js"; export * from "../calendars/index.js"; export * from "../cloud-communications/index.js"; export * from "../columns/index.js"; @@ -63,5 +68,6 @@ export * from "../shares/index.js"; export * from "../sites/index.js"; export * from "../subscriptions/index.js"; export * from "../taxonomy/index.js"; +export * from "../teams/index.js"; export * from "../to-do/index.js"; export * from "../users/index.js";