@geode/opengeodeweb-viewer 1.21.0 → 1.22.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.
@@ -1144,6 +1144,148 @@
1144
1144
  },
1145
1145
  "model": {
1146
1146
  "blocks": {
1147
+ "attribute": {
1148
+ "polyhedron": {
1149
+ "name": {
1150
+ "$id": "opengeodeweb_viewer.model.blocks.attribute.polyhedron.name",
1151
+ "rpc": "name",
1152
+ "type": "object",
1153
+ "properties": {
1154
+ "id": {
1155
+ "type": "string",
1156
+ "minLength": 1
1157
+ },
1158
+ "block_ids": {
1159
+ "type": "array",
1160
+ "items": {
1161
+ "type": "integer"
1162
+ },
1163
+ "minItems": 1
1164
+ },
1165
+ "name": {
1166
+ "type": "string",
1167
+ "minLength": 1
1168
+ }
1169
+ },
1170
+ "required": [
1171
+ "id",
1172
+ "block_ids",
1173
+ "name"
1174
+ ],
1175
+ "additionalProperties": false
1176
+ },
1177
+ "color_map": {
1178
+ "$id": "opengeodeweb_viewer.model.blocks.attribute.polyhedron.color_map",
1179
+ "rpc": "color_map",
1180
+ "type": "object",
1181
+ "properties": {
1182
+ "id": {
1183
+ "type": "string",
1184
+ "minLength": 1
1185
+ },
1186
+ "block_ids": {
1187
+ "type": "array",
1188
+ "items": {
1189
+ "type": "integer"
1190
+ },
1191
+ "minItems": 1
1192
+ },
1193
+ "points": {
1194
+ "type": "array",
1195
+ "description": "Flat array of [value, r, g, b, ...]",
1196
+ "items": {
1197
+ "type": "number"
1198
+ },
1199
+ "minItems": 8
1200
+ },
1201
+ "minimum": {
1202
+ "type": "number"
1203
+ },
1204
+ "maximum": {
1205
+ "type": "number"
1206
+ }
1207
+ },
1208
+ "required": [
1209
+ "id",
1210
+ "block_ids",
1211
+ "points",
1212
+ "minimum",
1213
+ "maximum"
1214
+ ],
1215
+ "additionalProperties": false
1216
+ }
1217
+ },
1218
+ "vertex": {
1219
+ "name": {
1220
+ "$id": "opengeodeweb_viewer.model.blocks.attribute.vertex.name",
1221
+ "rpc": "name",
1222
+ "type": "object",
1223
+ "properties": {
1224
+ "id": {
1225
+ "type": "string",
1226
+ "minLength": 1
1227
+ },
1228
+ "block_ids": {
1229
+ "type": "array",
1230
+ "items": {
1231
+ "type": "integer"
1232
+ },
1233
+ "minItems": 1
1234
+ },
1235
+ "name": {
1236
+ "type": "string",
1237
+ "minLength": 1
1238
+ }
1239
+ },
1240
+ "required": [
1241
+ "id",
1242
+ "block_ids",
1243
+ "name"
1244
+ ],
1245
+ "additionalProperties": false
1246
+ },
1247
+ "color_map": {
1248
+ "$id": "opengeodeweb_viewer.model.blocks.attribute.vertex.color_map",
1249
+ "rpc": "color_map",
1250
+ "type": "object",
1251
+ "properties": {
1252
+ "id": {
1253
+ "type": "string",
1254
+ "minLength": 1
1255
+ },
1256
+ "block_ids": {
1257
+ "type": "array",
1258
+ "items": {
1259
+ "type": "integer"
1260
+ },
1261
+ "minItems": 1
1262
+ },
1263
+ "points": {
1264
+ "type": "array",
1265
+ "description": "Flat array of [value, r, g, b, ...]",
1266
+ "items": {
1267
+ "type": "number"
1268
+ },
1269
+ "minItems": 8
1270
+ },
1271
+ "minimum": {
1272
+ "type": "number"
1273
+ },
1274
+ "maximum": {
1275
+ "type": "number"
1276
+ }
1277
+ },
1278
+ "required": [
1279
+ "id",
1280
+ "block_ids",
1281
+ "points",
1282
+ "minimum",
1283
+ "maximum"
1284
+ ],
1285
+ "additionalProperties": false
1286
+ }
1287
+ }
1288
+ },
1147
1289
  "visibility": {
1148
1290
  "$id": "opengeodeweb_viewer.model.blocks.visibility",
1149
1291
  "rpc": "visibility",
@@ -1236,6 +1378,78 @@
1236
1378
  }
1237
1379
  },
1238
1380
  "corners": {
1381
+ "attribute": {
1382
+ "vertex": {
1383
+ "name": {
1384
+ "$id": "opengeodeweb_viewer.model.corners.attribute.vertex.name",
1385
+ "rpc": "name",
1386
+ "type": "object",
1387
+ "properties": {
1388
+ "id": {
1389
+ "type": "string",
1390
+ "minLength": 1
1391
+ },
1392
+ "block_ids": {
1393
+ "type": "array",
1394
+ "items": {
1395
+ "type": "integer"
1396
+ },
1397
+ "minItems": 1
1398
+ },
1399
+ "name": {
1400
+ "type": "string",
1401
+ "minLength": 1
1402
+ }
1403
+ },
1404
+ "required": [
1405
+ "id",
1406
+ "block_ids",
1407
+ "name"
1408
+ ],
1409
+ "additionalProperties": false
1410
+ },
1411
+ "color_map": {
1412
+ "$id": "opengeodeweb_viewer.model.corners.attribute.vertex.color_map",
1413
+ "rpc": "color_map",
1414
+ "type": "object",
1415
+ "properties": {
1416
+ "id": {
1417
+ "type": "string",
1418
+ "minLength": 1
1419
+ },
1420
+ "block_ids": {
1421
+ "type": "array",
1422
+ "items": {
1423
+ "type": "integer"
1424
+ },
1425
+ "minItems": 1
1426
+ },
1427
+ "points": {
1428
+ "type": "array",
1429
+ "description": "Flat array of [value, r, g, b, ...]",
1430
+ "items": {
1431
+ "type": "number"
1432
+ },
1433
+ "minItems": 8
1434
+ },
1435
+ "minimum": {
1436
+ "type": "number"
1437
+ },
1438
+ "maximum": {
1439
+ "type": "number"
1440
+ }
1441
+ },
1442
+ "required": [
1443
+ "id",
1444
+ "block_ids",
1445
+ "points",
1446
+ "minimum",
1447
+ "maximum"
1448
+ ],
1449
+ "additionalProperties": false
1450
+ }
1451
+ }
1452
+ },
1239
1453
  "visibility": {
1240
1454
  "$id": "opengeodeweb_viewer.model.corners.visibility",
1241
1455
  "rpc": "visibility",
@@ -1349,6 +1563,148 @@
1349
1563
  }
1350
1564
  },
1351
1565
  "lines": {
1566
+ "attribute": {
1567
+ "edge": {
1568
+ "name": {
1569
+ "$id": "opengeodeweb_viewer.model.lines.attribute.edge.name",
1570
+ "rpc": "name",
1571
+ "type": "object",
1572
+ "properties": {
1573
+ "id": {
1574
+ "type": "string",
1575
+ "minLength": 1
1576
+ },
1577
+ "block_ids": {
1578
+ "type": "array",
1579
+ "items": {
1580
+ "type": "integer"
1581
+ },
1582
+ "minItems": 1
1583
+ },
1584
+ "name": {
1585
+ "type": "string",
1586
+ "minLength": 1
1587
+ }
1588
+ },
1589
+ "required": [
1590
+ "id",
1591
+ "block_ids",
1592
+ "name"
1593
+ ],
1594
+ "additionalProperties": false
1595
+ },
1596
+ "color_map": {
1597
+ "$id": "opengeodeweb_viewer.model.lines.attribute.edge.color_map",
1598
+ "rpc": "color_map",
1599
+ "type": "object",
1600
+ "properties": {
1601
+ "id": {
1602
+ "type": "string",
1603
+ "minLength": 1
1604
+ },
1605
+ "block_ids": {
1606
+ "type": "array",
1607
+ "items": {
1608
+ "type": "integer"
1609
+ },
1610
+ "minItems": 1
1611
+ },
1612
+ "points": {
1613
+ "type": "array",
1614
+ "description": "Flat array of [value, r, g, b, ...]",
1615
+ "items": {
1616
+ "type": "number"
1617
+ },
1618
+ "minItems": 8
1619
+ },
1620
+ "minimum": {
1621
+ "type": "number"
1622
+ },
1623
+ "maximum": {
1624
+ "type": "number"
1625
+ }
1626
+ },
1627
+ "required": [
1628
+ "id",
1629
+ "block_ids",
1630
+ "points",
1631
+ "minimum",
1632
+ "maximum"
1633
+ ],
1634
+ "additionalProperties": false
1635
+ }
1636
+ },
1637
+ "vertex": {
1638
+ "name": {
1639
+ "$id": "opengeodeweb_viewer.model.lines.attribute.vertex.name",
1640
+ "rpc": "name",
1641
+ "type": "object",
1642
+ "properties": {
1643
+ "id": {
1644
+ "type": "string",
1645
+ "minLength": 1
1646
+ },
1647
+ "block_ids": {
1648
+ "type": "array",
1649
+ "items": {
1650
+ "type": "integer"
1651
+ },
1652
+ "minItems": 1
1653
+ },
1654
+ "name": {
1655
+ "type": "string",
1656
+ "minLength": 1
1657
+ }
1658
+ },
1659
+ "required": [
1660
+ "id",
1661
+ "block_ids",
1662
+ "name"
1663
+ ],
1664
+ "additionalProperties": false
1665
+ },
1666
+ "color_map": {
1667
+ "$id": "opengeodeweb_viewer.model.lines.attribute.vertex.color_map",
1668
+ "rpc": "color_map",
1669
+ "type": "object",
1670
+ "properties": {
1671
+ "id": {
1672
+ "type": "string",
1673
+ "minLength": 1
1674
+ },
1675
+ "block_ids": {
1676
+ "type": "array",
1677
+ "items": {
1678
+ "type": "integer"
1679
+ },
1680
+ "minItems": 1
1681
+ },
1682
+ "points": {
1683
+ "type": "array",
1684
+ "description": "Flat array of [value, r, g, b, ...]",
1685
+ "items": {
1686
+ "type": "number"
1687
+ },
1688
+ "minItems": 8
1689
+ },
1690
+ "minimum": {
1691
+ "type": "number"
1692
+ },
1693
+ "maximum": {
1694
+ "type": "number"
1695
+ }
1696
+ },
1697
+ "required": [
1698
+ "id",
1699
+ "block_ids",
1700
+ "points",
1701
+ "minimum",
1702
+ "maximum"
1703
+ ],
1704
+ "additionalProperties": false
1705
+ }
1706
+ }
1707
+ },
1352
1708
  "visibility": {
1353
1709
  "$id": "opengeodeweb_viewer.model.lines.visibility",
1354
1710
  "rpc": "visibility",
@@ -1578,6 +1934,148 @@
1578
1934
  "additionalProperties": false
1579
1935
  },
1580
1936
  "surfaces": {
1937
+ "attribute": {
1938
+ "polygon": {
1939
+ "name": {
1940
+ "$id": "opengeodeweb_viewer.model.surfaces.attribute.polygon.name",
1941
+ "rpc": "name",
1942
+ "type": "object",
1943
+ "properties": {
1944
+ "id": {
1945
+ "type": "string",
1946
+ "minLength": 1
1947
+ },
1948
+ "block_ids": {
1949
+ "type": "array",
1950
+ "items": {
1951
+ "type": "integer"
1952
+ },
1953
+ "minItems": 1
1954
+ },
1955
+ "name": {
1956
+ "type": "string",
1957
+ "minLength": 1
1958
+ }
1959
+ },
1960
+ "required": [
1961
+ "id",
1962
+ "block_ids",
1963
+ "name"
1964
+ ],
1965
+ "additionalProperties": false
1966
+ },
1967
+ "color_map": {
1968
+ "$id": "opengeodeweb_viewer.model.surfaces.attribute.polygon.color_map",
1969
+ "rpc": "color_map",
1970
+ "type": "object",
1971
+ "properties": {
1972
+ "id": {
1973
+ "type": "string",
1974
+ "minLength": 1
1975
+ },
1976
+ "block_ids": {
1977
+ "type": "array",
1978
+ "items": {
1979
+ "type": "integer"
1980
+ },
1981
+ "minItems": 1
1982
+ },
1983
+ "points": {
1984
+ "type": "array",
1985
+ "description": "Flat array of [value, r, g, b, ...]",
1986
+ "items": {
1987
+ "type": "number"
1988
+ },
1989
+ "minItems": 8
1990
+ },
1991
+ "minimum": {
1992
+ "type": "number"
1993
+ },
1994
+ "maximum": {
1995
+ "type": "number"
1996
+ }
1997
+ },
1998
+ "required": [
1999
+ "id",
2000
+ "block_ids",
2001
+ "points",
2002
+ "minimum",
2003
+ "maximum"
2004
+ ],
2005
+ "additionalProperties": false
2006
+ }
2007
+ },
2008
+ "vertex": {
2009
+ "name": {
2010
+ "$id": "opengeodeweb_viewer.model.surfaces.attribute.vertex.name",
2011
+ "rpc": "name",
2012
+ "type": "object",
2013
+ "properties": {
2014
+ "id": {
2015
+ "type": "string",
2016
+ "minLength": 1
2017
+ },
2018
+ "block_ids": {
2019
+ "type": "array",
2020
+ "items": {
2021
+ "type": "integer"
2022
+ },
2023
+ "minItems": 1
2024
+ },
2025
+ "name": {
2026
+ "type": "string",
2027
+ "minLength": 1
2028
+ }
2029
+ },
2030
+ "required": [
2031
+ "id",
2032
+ "block_ids",
2033
+ "name"
2034
+ ],
2035
+ "additionalProperties": false
2036
+ },
2037
+ "color_map": {
2038
+ "$id": "opengeodeweb_viewer.model.surfaces.attribute.vertex.color_map",
2039
+ "rpc": "color_map",
2040
+ "type": "object",
2041
+ "properties": {
2042
+ "id": {
2043
+ "type": "string",
2044
+ "minLength": 1
2045
+ },
2046
+ "block_ids": {
2047
+ "type": "array",
2048
+ "items": {
2049
+ "type": "integer"
2050
+ },
2051
+ "minItems": 1
2052
+ },
2053
+ "points": {
2054
+ "type": "array",
2055
+ "description": "Flat array of [value, r, g, b, ...]",
2056
+ "items": {
2057
+ "type": "number"
2058
+ },
2059
+ "minItems": 8
2060
+ },
2061
+ "minimum": {
2062
+ "type": "number"
2063
+ },
2064
+ "maximum": {
2065
+ "type": "number"
2066
+ }
2067
+ },
2068
+ "required": [
2069
+ "id",
2070
+ "block_ids",
2071
+ "points",
2072
+ "minimum",
2073
+ "maximum"
2074
+ ],
2075
+ "additionalProperties": false
2076
+ }
2077
+ }
2078
+ },
1581
2079
  "visibility": {
1582
2080
  "$id": "opengeodeweb_viewer.model.surfaces.visibility",
1583
2081
  "rpc": "visibility",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@geode/opengeodeweb-viewer",
3
- "version": "1.21.0",
3
+ "version": "1.22.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": {