@geode/opengeodeweb-viewer 1.2.1-rc.1 → 1.3.0-rc.2

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 +103 -0
package/package.json CHANGED
@@ -13,7 +13,7 @@
13
13
  "require": "./schemas.json"
14
14
  }
15
15
  },
16
- "version": "1.2.1-rc.1",
16
+ "version": "1.3.0-rc.2",
17
17
  "description": "",
18
18
  "main": "generate_schemas.js",
19
19
  "repository": {
package/schemas.json CHANGED
@@ -360,6 +360,109 @@
360
360
  "additionalProperties": false
361
361
  }
362
362
  },
363
+ "polyhedrons": {
364
+ "visibility": {
365
+ "$id": "opengeodeweb_viewer.mesh.polyhedrons.visibility",
366
+ "rpc": "visibility",
367
+ "type": "object",
368
+ "properties": {
369
+ "id": {
370
+ "type": "string"
371
+ },
372
+ "visibility": {
373
+ "type": "boolean"
374
+ }
375
+ },
376
+ "required": [
377
+ "id",
378
+ "visibility"
379
+ ],
380
+ "additionalProperties": false
381
+ },
382
+ "vertex_attribute": {
383
+ "$id": "opengeodeweb_viewer.mesh.polyhedrons.vertex_attribute",
384
+ "rpc": "vertex_attribute",
385
+ "type": "object",
386
+ "properties": {
387
+ "id": {
388
+ "type": "string"
389
+ },
390
+ "name": {
391
+ "type": "string"
392
+ }
393
+ },
394
+ "required": [
395
+ "id",
396
+ "name"
397
+ ],
398
+ "additionalProperties": false
399
+ },
400
+ "polyhedron_attribute": {
401
+ "$id": "opengeodeweb_viewer.mesh.polyhedrons.polyhedron_attribute",
402
+ "rpc": "polyhedron_attribute",
403
+ "type": "object",
404
+ "properties": {
405
+ "id": {
406
+ "type": "string"
407
+ },
408
+ "name": {
409
+ "type": "string"
410
+ }
411
+ },
412
+ "required": [
413
+ "id",
414
+ "name"
415
+ ],
416
+ "additionalProperties": false
417
+ },
418
+ "color": {
419
+ "$id": "opengeodeweb_viewer.mesh.polyhedrons.color",
420
+ "rpc": "color",
421
+ "type": "object",
422
+ "properties": {
423
+ "id": {
424
+ "type": "string"
425
+ },
426
+ "color": {
427
+ "type": "object",
428
+ "properties": {
429
+ "r": {
430
+ "type": "integer",
431
+ "minimum": 0,
432
+ "maximum": 255
433
+ },
434
+ "g": {
435
+ "type": "integer",
436
+ "minimum": 0,
437
+ "maximum": 255
438
+ },
439
+ "b": {
440
+ "type": "integer",
441
+ "minimum": 0,
442
+ "maximum": 255
443
+ },
444
+ "a": {
445
+ "type": "number",
446
+ "minimum": 0,
447
+ "maximum": 1,
448
+ "default": 1
449
+ }
450
+ },
451
+ "required": [
452
+ "r",
453
+ "g",
454
+ "b"
455
+ ],
456
+ "additionalProperties": false
457
+ }
458
+ },
459
+ "required": [
460
+ "id",
461
+ "color"
462
+ ],
463
+ "additionalProperties": false
464
+ }
465
+ },
363
466
  "visibility": {
364
467
  "$id": "opengeodeweb_viewer.mesh.visibility",
365
468
  "rpc": "visibility",