@geode/opengeodeweb-viewer 1.15.7 → 1.15.8

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.
@@ -234,6 +234,38 @@
234
234
  "name"
235
235
  ],
236
236
  "additionalProperties": false
237
+ },
238
+ "color_map": {
239
+ "$id": "opengeodeweb_viewer.mesh.edges.attribute.edge.color_map",
240
+ "rpc": "color_map",
241
+ "type": "object",
242
+ "properties": {
243
+ "id": {
244
+ "type": "string",
245
+ "minLength": 1
246
+ },
247
+ "points": {
248
+ "type": "array",
249
+ "description": "Flat array of [value, r, g, b, ...]",
250
+ "items": {
251
+ "type": "number"
252
+ },
253
+ "minItems": 8
254
+ },
255
+ "minimum": {
256
+ "type": "number"
257
+ },
258
+ "maximum": {
259
+ "type": "number"
260
+ }
261
+ },
262
+ "required": [
263
+ "id",
264
+ "points",
265
+ "minimum",
266
+ "maximum"
267
+ ],
268
+ "additionalProperties": false
237
269
  }
238
270
  },
239
271
  "vertex": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@geode/opengeodeweb-viewer",
3
- "version": "1.15.7",
3
+ "version": "1.15.8",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "json": "npx opengeodeweb-microservice-generate opengeodeweb_viewer rpc rpc .",