Skip to content

Commit

Permalink
Merge pull request #926 from koopjs/quantization-mode
Browse files Browse the repository at this point in the history
Quantization mode
  • Loading branch information
rgwozdz authored Feb 26, 2024
2 parents 5d0efa1 + 4505d85 commit b606fe6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/eleven-games-cross.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@koopjs/featureserver": patch
---

Fix schema for quantizationParameter
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ const esriExtentSchema = joi.object({
const quantizationParametersSchema = joi.object({
originPosition: joi.string().optional(),
tolerance: joi.number().optional(),
extent: esriExtentSchema.optional()
extent: esriExtentSchema.optional(),
mode: joi.string().optional(),
});


Expand Down

0 comments on commit b606fe6

Please sign in to comment.