@geode/opengeodeweb-back 0.0.2 → 0.0.4
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.
- package/package.json +1 -31
- package/schemas.json +122 -0
package/package.json
CHANGED
|
@@ -1,31 +1 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@geode/opengeodeweb-back",
|
|
3
|
-
"scripts": {
|
|
4
|
-
"json": "node generate_schemas.js"
|
|
5
|
-
},
|
|
6
|
-
"dependencies": {
|
|
7
|
-
"glob": "^10.3.10"
|
|
8
|
-
},
|
|
9
|
-
"exports": "./schemas.json",
|
|
10
|
-
"version": "0.0.2",
|
|
11
|
-
"description": "",
|
|
12
|
-
"main": "generate_schemas.js",
|
|
13
|
-
"repository": {
|
|
14
|
-
"type": "git",
|
|
15
|
-
"url": "git+https://github.com/Geode-solutions/OpenGeodeWeb-Back.git"
|
|
16
|
-
},
|
|
17
|
-
"author": {
|
|
18
|
-
"name": "Geode-solutions",
|
|
19
|
-
"email": "contact@geode-solutions.com",
|
|
20
|
-
"url": "https://geode-solutions.com/"
|
|
21
|
-
},
|
|
22
|
-
"license": "MIT",
|
|
23
|
-
"bugs": {
|
|
24
|
-
"url": "https://github.com/Geode-solutions/OpenGeodeWeb-Back/issues"
|
|
25
|
-
},
|
|
26
|
-
"homepage": "https://github.com/Geode-solutions/OpenGeodeWeb-Back",
|
|
27
|
-
"publishConfig": {
|
|
28
|
-
"access": "public"
|
|
29
|
-
},
|
|
30
|
-
"files": []
|
|
31
|
-
}
|
|
1
|
+
{"name":"@geode/opengeodeweb-back","scripts":{"json":"node generate_schemas.js"},"dependencies":{"glob":"^10.3.10"},"exports":"./schemas.json","version":"0.0.4","description":"","main":"generate_schemas.js","repository":{"type":"git","url":"git+https://github.com/Geode-solutions/OpenGeodeWeb-Back.git"},"author":{"name":"Geode-solutions","email":"contact@geode-solutions.com","url":"https://geode-solutions.com/"},"license":"MIT","bugs":{"url":"https://github.com/Geode-solutions/OpenGeodeWeb-Back/issues"},"homepage":"https://github.com/Geode-solutions/OpenGeodeWeb-Back","publishConfig":{"access":"public"},"files":["schemas.json"]}
|
package/schemas.json
ADDED
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
{
|
|
2
|
+
"routes": {
|
|
3
|
+
"upload_file": {
|
|
4
|
+
"$id": "ogw_back/routes/upload_file",
|
|
5
|
+
"route": "/upload_file",
|
|
6
|
+
"methods": [
|
|
7
|
+
"OPTIONS",
|
|
8
|
+
"PUT"
|
|
9
|
+
],
|
|
10
|
+
"type": "object",
|
|
11
|
+
"properties": {
|
|
12
|
+
"filename": {
|
|
13
|
+
"type": "string"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"additionalProperties": false
|
|
17
|
+
},
|
|
18
|
+
"missing_files": {
|
|
19
|
+
"$id": "ogw_back/routes/missing_files",
|
|
20
|
+
"route": "/missing_files",
|
|
21
|
+
"methods": [
|
|
22
|
+
"POST"
|
|
23
|
+
],
|
|
24
|
+
"type": "object",
|
|
25
|
+
"properties": {
|
|
26
|
+
"input_geode_object": {
|
|
27
|
+
"type": "string"
|
|
28
|
+
},
|
|
29
|
+
"filename": {
|
|
30
|
+
"type": "string"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"required": [
|
|
34
|
+
"input_geode_object",
|
|
35
|
+
"filename"
|
|
36
|
+
],
|
|
37
|
+
"additionalProperties": false
|
|
38
|
+
},
|
|
39
|
+
"geographic_coordinate_systems": {
|
|
40
|
+
"$id": "ogw_back/routes/geographic_coordinate_systems",
|
|
41
|
+
"route": "/geographic_coordinate_systems",
|
|
42
|
+
"methods": [
|
|
43
|
+
"POST"
|
|
44
|
+
],
|
|
45
|
+
"type": "object",
|
|
46
|
+
"properties": {
|
|
47
|
+
"input_geode_object": {
|
|
48
|
+
"type": "string"
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
"required": [
|
|
52
|
+
"input_geode_object"
|
|
53
|
+
],
|
|
54
|
+
"additionalProperties": false
|
|
55
|
+
},
|
|
56
|
+
"geode_objects_and_output_extensions": {
|
|
57
|
+
"$id": "ogw_back/routes/geode_objects_and_output_extensions",
|
|
58
|
+
"route": "/geode_objects_and_output_extensions",
|
|
59
|
+
"methods": [
|
|
60
|
+
"POST"
|
|
61
|
+
],
|
|
62
|
+
"type": "object",
|
|
63
|
+
"properties": {
|
|
64
|
+
"input_geode_object": {
|
|
65
|
+
"type": "string"
|
|
66
|
+
},
|
|
67
|
+
"filename": {
|
|
68
|
+
"type": "string"
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
"required": [
|
|
72
|
+
"input_geode_object",
|
|
73
|
+
"filename"
|
|
74
|
+
],
|
|
75
|
+
"additionalProperties": false
|
|
76
|
+
},
|
|
77
|
+
"allowed_objects": {
|
|
78
|
+
"$id": "ogw_back/routes/allowed_objects",
|
|
79
|
+
"route": "/allowed_objects",
|
|
80
|
+
"methods": [
|
|
81
|
+
"POST"
|
|
82
|
+
],
|
|
83
|
+
"type": "object",
|
|
84
|
+
"properties": {
|
|
85
|
+
"filename": {
|
|
86
|
+
"type": "string"
|
|
87
|
+
},
|
|
88
|
+
"key": {
|
|
89
|
+
"type": [
|
|
90
|
+
"string",
|
|
91
|
+
"null"
|
|
92
|
+
]
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
"required": [
|
|
96
|
+
"filename",
|
|
97
|
+
"key"
|
|
98
|
+
],
|
|
99
|
+
"additionalProperties": false
|
|
100
|
+
},
|
|
101
|
+
"allowed_files": {
|
|
102
|
+
"$id": "ogw_back/routes/allowed_files",
|
|
103
|
+
"route": "/allowed_files",
|
|
104
|
+
"methods": [
|
|
105
|
+
"POST"
|
|
106
|
+
],
|
|
107
|
+
"type": "object",
|
|
108
|
+
"properties": {
|
|
109
|
+
"key": {
|
|
110
|
+
"type": [
|
|
111
|
+
"string",
|
|
112
|
+
"null"
|
|
113
|
+
]
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
"required": [
|
|
117
|
+
"key"
|
|
118
|
+
],
|
|
119
|
+
"additionalProperties": false
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
}
|