From d8571818ccf09de82bc126d74770588aa85d7ce0 Mon Sep 17 00:00:00 2001 From: almog8k Date: Tue, 5 May 2026 11:07:41 +0300 Subject: [PATCH] feat: add tile schema and type exports to core index files Co-authored-by: Copilot --- src/schemas/core/index.ts | 1 + src/types/core/index.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/src/schemas/core/index.ts b/src/schemas/core/index.ts index 16b0b2a..6438621 100644 --- a/src/schemas/core/index.ts +++ b/src/schemas/core/index.ts @@ -7,3 +7,4 @@ export * from './callback.schema'; export * from './link.schema'; export * from './file.schema'; export * from './polygonParts.schema'; +export * from './tile.schema'; diff --git a/src/types/core/index.ts b/src/types/core/index.ts index 8e8f7b8..b27df06 100644 --- a/src/types/core/index.ts +++ b/src/types/core/index.ts @@ -7,3 +7,4 @@ export * from './link.type'; export * from './file.type'; export * from './callback.type'; export * from './polygonParts.type'; +export * from './tile.type';