@geode/opengeodeweb-back 5.5.1 → 5.6.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 +29 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@geode/opengeodeweb-back",
3
- "version": "5.5.1",
3
+ "version": "5.6.0-rc.2",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "json": "node generate_schemas.js opengeodeweb_back routes route /"
package/schemas.json CHANGED
@@ -36,6 +36,31 @@
36
36
  },
37
37
  "additionalProperties": false
38
38
  },
39
+ "texture_coordinates": {
40
+ "$id": "opengeodeweb_back/texture_coordinates",
41
+ "route": "/texture_coordinates",
42
+ "methods": [
43
+ "POST"
44
+ ],
45
+ "type": "object",
46
+ "properties": {
47
+ "input_geode_object": {
48
+ "type": [
49
+ "string"
50
+ ]
51
+ },
52
+ "filename": {
53
+ "type": [
54
+ "string"
55
+ ]
56
+ }
57
+ },
58
+ "required": [
59
+ "input_geode_object",
60
+ "filename"
61
+ ],
62
+ "additionalProperties": false
63
+ },
39
64
  "save_viewable_file": {
40
65
  "$id": "opengeodeweb_back/save_viewable_file",
41
66
  "route": "/save_viewable_file",
@@ -198,6 +223,9 @@
198
223
  ],
199
224
  "type": "object",
200
225
  "properties": {
226
+ "title": {
227
+ "type": "string"
228
+ },
201
229
  "x": {
202
230
  "type": "number"
203
231
  },
@@ -209,6 +237,7 @@
209
237
  }
210
238
  },
211
239
  "required": [
240
+ "title",
212
241
  "x",
213
242
  "y",
214
243
  "z"