@geode/opengeodeweb-viewer 1.1.0-rc.1 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/schemas.json +20 -21
package/package.json CHANGED
@@ -13,7 +13,7 @@
13
13
  "require": "./schemas.json"
14
14
  }
15
15
  },
16
- "version": "1.1.0-rc.1",
16
+ "version": "1.1.0",
17
17
  "description": "",
18
18
  "main": "generate_schemas.js",
19
19
  "repository": {
package/schemas.json CHANGED
@@ -522,28 +522,27 @@
522
522
  "picked_ids": {
523
523
  "$id": "opengeodeweb_viewer.viewer.picked_ids",
524
524
  "rpc": "picked_ids",
525
- "schema": {
526
- "type": "object",
527
- "properties": {
528
- "x": {
529
- "type": "number"
530
- },
531
- "y": {
532
- "type": "number"
533
- },
534
- "ids": {
535
- "type": "array",
536
- "items": {
537
- "type": "string"
538
- }
539
- }
525
+ "type": "object",
526
+ "properties": {
527
+ "x": {
528
+ "type": "number"
529
+ },
530
+ "y": {
531
+ "type": "number"
540
532
  },
541
- "required": [
542
- "x",
543
- "y",
544
- "ids"
545
- ]
546
- }
533
+ "ids": {
534
+ "type": "array",
535
+ "items": {
536
+ "type": "string"
537
+ }
538
+ }
539
+ },
540
+ "required": [
541
+ "x",
542
+ "y",
543
+ "ids"
544
+ ],
545
+ "additionalProperties": false
547
546
  },
548
547
  "get_point_position": {
549
548
  "$id": "opengeodeweb_viewer.viewer.get_point_position",