feat: added raster shared types and values for lower resolution feature support#203
Merged
Conversation
…10506) (#183) Co-authored-by: Copilot <copilot@github.com> Co-authored-by: RonitKissis <ronitkisis1997@gmail.com>
Release-As: 8.0.0-alpha.0
Co-authored-by: Copilot <copilot@github.com> Co-authored-by: razbroc <77406876+razbroc@users.noreply.github.com>
Co-authored-by: Copilot <copilot@github.com>
vitaligi
approved these changes
May 18, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
| Answer |
| ---------------- | -------------------------------------------------------------------------- |
| New feature | ✔ |
This pull request introduces new core schemas and types for polygon parts and tile deletion, refactors schema organization for better reuse, and updates the release process and configuration for alpha pre-releases. It also includes a minor bug fix and validation improvements. The most important changes are summarized below:
New Core Schemas and Types:
polygonParts.schema.tsandtile.schema.tstosrc/schemas/core/, introducing comprehensive Zod schemas for polygon parts (including intersection schemas) and tile deletion parameters, and exported them in the core index for wider use. [1] [2] [3] [4]src/types/core/and exported them in the index.Schema Refactoring and Validation Improvements:
partSchemainstead of duplicating its definition, improving maintainability. Also updatedjobTypevalidation to use a Zod enum schema. [1] [2] [3] [4]productIdvalidation pattern in ingestion constants to restrict the maximum length.Constants and Type Consolidation:
SourceTypedefinition from export constants to core constants for consistent usage across the codebase, and addedMAX_ZOOM_LEVELto core constants. [1] [2]Release Process and Versioning:
8.1.0-alpha.3and updated the changelog accordingly. [1] [2] [3]Bug Fixes:
These changes collectively improve schema coverage, validation accuracy, code reuse, and release automation.| Question