@geode/opengeodeweb-viewer 1.12.0 → 1.13.0-rc.1

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.
@@ -33,6 +33,115 @@
33
33
  }
34
34
  },
35
35
  "mesh": {
36
+ "cells": {
37
+ "visibility": {
38
+ "$id": "opengeodeweb_viewer.mesh.cells.visibility",
39
+ "rpc": "visibility",
40
+ "type": "object",
41
+ "properties": {
42
+ "id": {
43
+ "type": "string",
44
+ "minLength": 1
45
+ },
46
+ "visibility": {
47
+ "type": "boolean"
48
+ }
49
+ },
50
+ "required": [
51
+ "id",
52
+ "visibility"
53
+ ],
54
+ "additionalProperties": false
55
+ },
56
+ "vertex_attribute": {
57
+ "$id": "opengeodeweb_viewer.mesh.cells.vertex_attribute",
58
+ "rpc": "vertex_attribute",
59
+ "type": "object",
60
+ "properties": {
61
+ "id": {
62
+ "type": "string",
63
+ "minLength": 1
64
+ },
65
+ "name": {
66
+ "type": "string",
67
+ "minLength": 1
68
+ }
69
+ },
70
+ "required": [
71
+ "id",
72
+ "name"
73
+ ],
74
+ "additionalProperties": false
75
+ },
76
+ "color": {
77
+ "$id": "opengeodeweb_viewer.mesh.cells.color",
78
+ "rpc": "color",
79
+ "type": "object",
80
+ "properties": {
81
+ "id": {
82
+ "type": "string",
83
+ "minLength": 1
84
+ },
85
+ "color": {
86
+ "type": "object",
87
+ "properties": {
88
+ "r": {
89
+ "type": "integer",
90
+ "minimum": 0,
91
+ "maximum": 255
92
+ },
93
+ "g": {
94
+ "type": "integer",
95
+ "minimum": 0,
96
+ "maximum": 255
97
+ },
98
+ "b": {
99
+ "type": "integer",
100
+ "minimum": 0,
101
+ "maximum": 255
102
+ },
103
+ "a": {
104
+ "type": "number",
105
+ "minimum": 0,
106
+ "maximum": 1,
107
+ "default": 1
108
+ }
109
+ },
110
+ "required": [
111
+ "r",
112
+ "g",
113
+ "b"
114
+ ],
115
+ "additionalProperties": false
116
+ }
117
+ },
118
+ "required": [
119
+ "id",
120
+ "color"
121
+ ],
122
+ "additionalProperties": false
123
+ },
124
+ "cell_attribute": {
125
+ "$id": "opengeodeweb_viewer.mesh.cells.cell_attribute",
126
+ "rpc": "cell_attribute",
127
+ "type": "object",
128
+ "properties": {
129
+ "id": {
130
+ "type": "string",
131
+ "minLength": 1
132
+ },
133
+ "name": {
134
+ "type": "string",
135
+ "minLength": 1
136
+ }
137
+ },
138
+ "required": [
139
+ "id",
140
+ "name"
141
+ ],
142
+ "additionalProperties": false
143
+ }
144
+ },
36
145
  "edges": {
37
146
  "width": {
38
147
  "$id": "opengeodeweb_viewer.mesh.edges.size",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@geode/opengeodeweb-viewer",
3
- "version": "1.12.0",
3
+ "version": "1.13.0-rc.1",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "json": "npx opengeodeweb-microservice-generate opengeodeweb_viewer rpc rpc .",
@@ -8,7 +8,7 @@
8
8
  "build": "npm run json"
9
9
  },
10
10
  "dependencies": {
11
- "@geode/opengeodeweb-microservice": "latest"
11
+ "@geode/opengeodeweb-microservice": "next"
12
12
  },
13
13
  "exports": {
14
14
  "./opengeodeweb_viewer_schemas.json": {