@geode/opengeodeweb-back 5.3.2 → 5.4.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 +67 -0
package/package.json CHANGED
@@ -12,7 +12,7 @@
12
12
  "require": "./schemas.json"
13
13
  }
14
14
  },
15
- "version": "5.3.2",
15
+ "version": "5.4.0-rc.2",
16
16
  "description": "",
17
17
  "main": "generate_schemas.js",
18
18
  "repository": {
package/schemas.json CHANGED
@@ -1,5 +1,26 @@
1
1
  {
2
2
  "opengeodeweb_back": {
3
+ "vertex_attribute_names": {
4
+ "$id": "opengeodeweb_back/vertex_attribute_names",
5
+ "route": "/vertex_attribute_names",
6
+ "methods": [
7
+ "POST"
8
+ ],
9
+ "type": "object",
10
+ "properties": {
11
+ "input_geode_object": {
12
+ "type": "string"
13
+ },
14
+ "filename": {
15
+ "type": "string"
16
+ }
17
+ },
18
+ "required": [
19
+ "input_geode_object",
20
+ "filename"
21
+ ],
22
+ "additionalProperties": false
23
+ },
3
24
  "upload_file": {
4
25
  "$id": "opengeodeweb_back/upload_file",
5
26
  "route": "/upload_file",
@@ -36,6 +57,27 @@
36
57
  ],
37
58
  "additionalProperties": false
38
59
  },
60
+ "polygon_attribute_names": {
61
+ "$id": "opengeodeweb_back/polygon_attribute_names",
62
+ "route": "/polygon_attribute_names",
63
+ "methods": [
64
+ "POST"
65
+ ],
66
+ "type": "object",
67
+ "properties": {
68
+ "input_geode_object": {
69
+ "type": "string"
70
+ },
71
+ "filename": {
72
+ "type": "string"
73
+ }
74
+ },
75
+ "required": [
76
+ "input_geode_object",
77
+ "filename"
78
+ ],
79
+ "additionalProperties": false
80
+ },
39
81
  "ping": {
40
82
  "$id": "opengeodeweb_back/ping",
41
83
  "route": "/ping",
@@ -127,6 +169,31 @@
127
169
  ],
128
170
  "additionalProperties": false
129
171
  },
172
+ "create_point": {
173
+ "$id": "opengeodeweb_back/create_point",
174
+ "route": "/create_point",
175
+ "methods": [
176
+ "POST"
177
+ ],
178
+ "type": "object",
179
+ "properties": {
180
+ "x": {
181
+ "type": "number"
182
+ },
183
+ "y": {
184
+ "type": "number"
185
+ },
186
+ "z": {
187
+ "type": "number"
188
+ }
189
+ },
190
+ "required": [
191
+ "x",
192
+ "y",
193
+ "z"
194
+ ],
195
+ "additionalProperties": false
196
+ },
130
197
  "allowed_objects": {
131
198
  "$id": "opengeodeweb_back/allowed_objects",
132
199
  "route": "/allowed_objects",