OpenGeodeWeb-Back 5.6.0rc3__py3-none-any.whl → 5.6.1rc1__py3-none-any.whl
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.
- opengeodeweb_back/routes/schemas/allowed_objects.json +14 -5
- opengeodeweb_back/routes/schemas/create_point.json +2 -1
- opengeodeweb_back/routes/schemas/geode_objects_and_output_extensions.json +12 -5
- opengeodeweb_back/routes/schemas/geographic_coordinate_systems.json +9 -4
- opengeodeweb_back/routes/schemas/inspect_file.json +12 -5
- opengeodeweb_back/routes/schemas/missing_files.json +12 -5
- opengeodeweb_back/routes/schemas/polygon_attribute_names.json +12 -5
- opengeodeweb_back/routes/schemas/polyhedron_attribute_names.json +12 -5
- opengeodeweb_back/routes/schemas/save_viewable_file.json +4 -2
- opengeodeweb_back/routes/schemas/texture_coordinates.json +4 -6
- opengeodeweb_back/routes/schemas/upload_file.json +7 -3
- opengeodeweb_back/routes/schemas/vertex_attribute_names.json +12 -5
- {opengeodeweb_back-5.6.0rc3.dist-info → opengeodeweb_back-5.6.1rc1.dist-info}/METADATA +1 -1
- {opengeodeweb_back-5.6.0rc3.dist-info → opengeodeweb_back-5.6.1rc1.dist-info}/RECORD +17 -17
- {opengeodeweb_back-5.6.0rc3.dist-info → opengeodeweb_back-5.6.1rc1.dist-info}/LICENSE +0 -0
- {opengeodeweb_back-5.6.0rc3.dist-info → opengeodeweb_back-5.6.1rc1.dist-info}/WHEEL +0 -0
- {opengeodeweb_back-5.6.0rc3.dist-info → opengeodeweb_back-5.6.1rc1.dist-info}/top_level.txt +0 -0
@@ -1,15 +1,24 @@
|
|
1
1
|
{
|
2
2
|
"route": "/allowed_objects",
|
3
|
-
"methods": [
|
3
|
+
"methods": [
|
4
|
+
"POST"
|
5
|
+
],
|
4
6
|
"type": "object",
|
5
7
|
"properties": {
|
6
8
|
"filename": {
|
7
|
-
"type": "string"
|
9
|
+
"type": "string",
|
10
|
+
"minLength": 1
|
8
11
|
},
|
9
12
|
"supported_feature": {
|
10
|
-
"type": [
|
13
|
+
"type": [
|
14
|
+
"string",
|
15
|
+
"null"
|
16
|
+
]
|
11
17
|
}
|
12
18
|
},
|
13
|
-
"required": [
|
19
|
+
"required": [
|
20
|
+
"filename",
|
21
|
+
"supported_feature"
|
22
|
+
],
|
14
23
|
"additionalProperties": false
|
15
|
-
}
|
24
|
+
}
|
@@ -1,15 +1,22 @@
|
|
1
1
|
{
|
2
2
|
"route": "/geode_objects_and_output_extensions",
|
3
|
-
"methods": [
|
3
|
+
"methods": [
|
4
|
+
"POST"
|
5
|
+
],
|
4
6
|
"type": "object",
|
5
7
|
"properties": {
|
6
8
|
"input_geode_object": {
|
7
|
-
"type": "string"
|
9
|
+
"type": "string",
|
10
|
+
"minLength": 1
|
8
11
|
},
|
9
12
|
"filename": {
|
10
|
-
"type": "string"
|
13
|
+
"type": "string",
|
14
|
+
"minLength": 1
|
11
15
|
}
|
12
16
|
},
|
13
|
-
"required": [
|
17
|
+
"required": [
|
18
|
+
"input_geode_object",
|
19
|
+
"filename"
|
20
|
+
],
|
14
21
|
"additionalProperties": false
|
15
|
-
}
|
22
|
+
}
|
@@ -1,12 +1,17 @@
|
|
1
1
|
{
|
2
2
|
"route": "/geographic_coordinate_systems",
|
3
|
-
"methods": [
|
3
|
+
"methods": [
|
4
|
+
"POST"
|
5
|
+
],
|
4
6
|
"type": "object",
|
5
7
|
"properties": {
|
6
8
|
"input_geode_object": {
|
7
|
-
"type": "string"
|
9
|
+
"type": "string",
|
10
|
+
"minLength": 1
|
8
11
|
}
|
9
12
|
},
|
10
|
-
"required": [
|
13
|
+
"required": [
|
14
|
+
"input_geode_object"
|
15
|
+
],
|
11
16
|
"additionalProperties": false
|
12
|
-
}
|
17
|
+
}
|
@@ -1,15 +1,22 @@
|
|
1
1
|
{
|
2
2
|
"route": "/inspect_file",
|
3
|
-
"methods": [
|
3
|
+
"methods": [
|
4
|
+
"POST"
|
5
|
+
],
|
4
6
|
"type": "object",
|
5
7
|
"properties": {
|
6
8
|
"filename": {
|
7
|
-
"type": "string"
|
9
|
+
"type": "string",
|
10
|
+
"minLength": 1
|
8
11
|
},
|
9
12
|
"input_geode_object": {
|
10
|
-
"type": "string"
|
13
|
+
"type": "string",
|
14
|
+
"minLength": 1
|
11
15
|
}
|
12
16
|
},
|
13
|
-
"required": [
|
17
|
+
"required": [
|
18
|
+
"filename",
|
19
|
+
"input_geode_object"
|
20
|
+
],
|
14
21
|
"additionalProperties": false
|
15
|
-
}
|
22
|
+
}
|
@@ -1,15 +1,22 @@
|
|
1
1
|
{
|
2
2
|
"route": "/missing_files",
|
3
|
-
"methods": [
|
3
|
+
"methods": [
|
4
|
+
"POST"
|
5
|
+
],
|
4
6
|
"type": "object",
|
5
7
|
"properties": {
|
6
8
|
"input_geode_object": {
|
7
|
-
"type": "string"
|
9
|
+
"type": "string",
|
10
|
+
"minLength": 1
|
8
11
|
},
|
9
12
|
"filename": {
|
10
|
-
"type": "string"
|
13
|
+
"type": "string",
|
14
|
+
"minLength": 1
|
11
15
|
}
|
12
16
|
},
|
13
|
-
"required": [
|
17
|
+
"required": [
|
18
|
+
"input_geode_object",
|
19
|
+
"filename"
|
20
|
+
],
|
14
21
|
"additionalProperties": false
|
15
|
-
}
|
22
|
+
}
|
@@ -1,15 +1,22 @@
|
|
1
1
|
{
|
2
2
|
"route": "/polygon_attribute_names",
|
3
|
-
"methods": [
|
3
|
+
"methods": [
|
4
|
+
"POST"
|
5
|
+
],
|
4
6
|
"type": "object",
|
5
7
|
"properties": {
|
6
8
|
"input_geode_object": {
|
7
|
-
"type": "string"
|
9
|
+
"type": "string",
|
10
|
+
"minLength": 1
|
8
11
|
},
|
9
12
|
"filename": {
|
10
|
-
"type": "string"
|
13
|
+
"type": "string",
|
14
|
+
"minLength": 1
|
11
15
|
}
|
12
16
|
},
|
13
|
-
"required": [
|
17
|
+
"required": [
|
18
|
+
"input_geode_object",
|
19
|
+
"filename"
|
20
|
+
],
|
14
21
|
"additionalProperties": false
|
15
|
-
}
|
22
|
+
}
|
@@ -1,15 +1,22 @@
|
|
1
1
|
{
|
2
2
|
"route": "/polyhedron_attribute_names",
|
3
|
-
"methods": [
|
3
|
+
"methods": [
|
4
|
+
"POST"
|
5
|
+
],
|
4
6
|
"type": "object",
|
5
7
|
"properties": {
|
6
8
|
"input_geode_object": {
|
7
|
-
"type": "string"
|
9
|
+
"type": "string",
|
10
|
+
"minLength": 1
|
8
11
|
},
|
9
12
|
"filename": {
|
10
|
-
"type": "string"
|
13
|
+
"type": "string",
|
14
|
+
"minLength": 1
|
11
15
|
}
|
12
16
|
},
|
13
|
-
"required": [
|
17
|
+
"required": [
|
18
|
+
"input_geode_object",
|
19
|
+
"filename"
|
20
|
+
],
|
14
21
|
"additionalProperties": false
|
15
|
-
}
|
22
|
+
}
|
@@ -6,14 +6,12 @@
|
|
6
6
|
"type": "object",
|
7
7
|
"properties": {
|
8
8
|
"input_geode_object": {
|
9
|
-
"type":
|
10
|
-
|
11
|
-
]
|
9
|
+
"type": "string",
|
10
|
+
"minLength": 1
|
12
11
|
},
|
13
12
|
"filename": {
|
14
|
-
"type":
|
15
|
-
|
16
|
-
]
|
13
|
+
"type": "string",
|
14
|
+
"minLength": 1
|
17
15
|
}
|
18
16
|
},
|
19
17
|
"required": [
|
@@ -1,11 +1,15 @@
|
|
1
1
|
{
|
2
2
|
"route": "/upload_file",
|
3
|
-
"methods": [
|
3
|
+
"methods": [
|
4
|
+
"OPTIONS",
|
5
|
+
"PUT"
|
6
|
+
],
|
4
7
|
"type": "object",
|
5
8
|
"properties": {
|
6
9
|
"filename": {
|
7
|
-
"type": "string"
|
10
|
+
"type": "string",
|
11
|
+
"minLength": 1
|
8
12
|
}
|
9
13
|
},
|
10
14
|
"additionalProperties": false
|
11
|
-
}
|
15
|
+
}
|
@@ -1,15 +1,22 @@
|
|
1
1
|
{
|
2
2
|
"route": "/vertex_attribute_names",
|
3
|
-
"methods": [
|
3
|
+
"methods": [
|
4
|
+
"POST"
|
5
|
+
],
|
4
6
|
"type": "object",
|
5
7
|
"properties": {
|
6
8
|
"input_geode_object": {
|
7
|
-
"type": "string"
|
9
|
+
"type": "string",
|
10
|
+
"minLength": 1
|
8
11
|
},
|
9
12
|
"filename": {
|
10
|
-
"type": "string"
|
13
|
+
"type": "string",
|
14
|
+
"minLength": 1
|
11
15
|
}
|
12
16
|
},
|
13
|
-
"required": [
|
17
|
+
"required": [
|
18
|
+
"input_geode_object",
|
19
|
+
"filename"
|
20
|
+
],
|
14
21
|
"additionalProperties": false
|
15
|
-
}
|
22
|
+
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: OpenGeodeWeb-Back
|
3
|
-
Version: 5.6.
|
3
|
+
Version: 5.6.1rc1
|
4
4
|
Summary: OpenGeodeWeb-Back is an open source framework that proposes handy python functions and wrappers for the OpenGeode ecosystem
|
5
5
|
Author-email: Geode-solutions <team-web@geode-solutions.com>
|
6
6
|
Project-URL: Homepage, https://github.com/Geode-solutions/OpenGeodeWeb-Back
|
@@ -6,21 +6,21 @@ opengeodeweb_back/test_utils.py,sha256=gvRPOzin4nI5TKuB-AFgIxcekTOYM4h7yUYk0tYIZ
|
|
6
6
|
opengeodeweb_back/utils_functions.py,sha256=18kp8M3bnrlu692qj-ymJJPA1hTpPjx_xl9oVi5qGyg,4120
|
7
7
|
opengeodeweb_back/routes/blueprint_routes.py,sha256=oDhoXIX5XIaaRa-_CEphwRmIxhuUYOS2spB2i1zOc8k,13818
|
8
8
|
opengeodeweb_back/routes/schemas/allowed_files.json,sha256=pRsGf39LiJpl3zEGLg4IqvRtm7iUx3Wq4Tb4tSFXGV0,234
|
9
|
-
opengeodeweb_back/routes/schemas/allowed_objects.json,sha256=
|
10
|
-
opengeodeweb_back/routes/schemas/create_point.json,sha256=
|
11
|
-
opengeodeweb_back/routes/schemas/geode_objects_and_output_extensions.json,sha256=
|
12
|
-
opengeodeweb_back/routes/schemas/geographic_coordinate_systems.json,sha256=
|
13
|
-
opengeodeweb_back/routes/schemas/inspect_file.json,sha256=
|
14
|
-
opengeodeweb_back/routes/schemas/missing_files.json,sha256=
|
9
|
+
opengeodeweb_back/routes/schemas/allowed_objects.json,sha256=oy_YYpFzgDICx-keWqNIUpQM3zzB4eE3H6mPNxH9rWc,361
|
10
|
+
opengeodeweb_back/routes/schemas/create_point.json,sha256=XjmXLMkr4jgWYHUKSwAhsxz1oLDZi8r8J0SY-QuEvks,386
|
11
|
+
opengeodeweb_back/routes/schemas/geode_objects_and_output_extensions.json,sha256=tp83tPQaxTltQrdL8D3TnG8pqY_2fgAaYVeTWPXO0qI,371
|
12
|
+
opengeodeweb_back/routes/schemas/geographic_coordinate_systems.json,sha256=lnPqevRRlUASF4ObmpG8ChH3c2LHNB99Si292S3OsLU,279
|
13
|
+
opengeodeweb_back/routes/schemas/inspect_file.json,sha256=WoFF2hgZCUfqSDFJRq1sLpivjCQ6TCvSHPH8pKFY6KM,348
|
14
|
+
opengeodeweb_back/routes/schemas/missing_files.json,sha256=eOBAkiphA-2xG6e-OAy7wcJK2FeY0YFYXJlLdr8SNSc,349
|
15
15
|
opengeodeweb_back/routes/schemas/ping.json,sha256=MhI5jtrjMsAsfIKEzdY8p1HyV9xv4O3hYfESWw6tkyE,162
|
16
|
-
opengeodeweb_back/routes/schemas/polygon_attribute_names.json,sha256=
|
17
|
-
opengeodeweb_back/routes/schemas/polyhedron_attribute_names.json,sha256=
|
18
|
-
opengeodeweb_back/routes/schemas/save_viewable_file.json,sha256=
|
19
|
-
opengeodeweb_back/routes/schemas/texture_coordinates.json,sha256=
|
20
|
-
opengeodeweb_back/routes/schemas/upload_file.json,sha256=
|
21
|
-
opengeodeweb_back/routes/schemas/vertex_attribute_names.json,sha256=
|
22
|
-
opengeodeweb_back-5.6.
|
23
|
-
opengeodeweb_back-5.6.
|
24
|
-
opengeodeweb_back-5.6.
|
25
|
-
opengeodeweb_back-5.6.
|
26
|
-
opengeodeweb_back-5.6.
|
16
|
+
opengeodeweb_back/routes/schemas/polygon_attribute_names.json,sha256=u-_ypRIejrDzbSc8tcb-6j6Av026SVJGC-RFPgaay7w,359
|
17
|
+
opengeodeweb_back/routes/schemas/polyhedron_attribute_names.json,sha256=ImKRR2-38Ug3jAHaVEzmNaPNMTSoDE10-ZoALsnSjyg,362
|
18
|
+
opengeodeweb_back/routes/schemas/save_viewable_file.json,sha256=pvvEdaC7bNASPMrl3bXzlcA5blgflK0EYp2hBDf74qY,424
|
19
|
+
opengeodeweb_back/routes/schemas/texture_coordinates.json,sha256=m0EqxlvKojXVxK5Csucodu3rq1YMVJPwXJN_Wreb3qc,355
|
20
|
+
opengeodeweb_back/routes/schemas/upload_file.json,sha256=LJ3U3L5ApKuQDVFIpVT_y2alq4HW_suTvZ3HUucNbhg,219
|
21
|
+
opengeodeweb_back/routes/schemas/vertex_attribute_names.json,sha256=bya9KGtTmHFWjD-ur0_0UAY2yf3KkMeuNrk6E1UkjLM,358
|
22
|
+
opengeodeweb_back-5.6.1rc1.dist-info/LICENSE,sha256=LoTB-aqQvzTGxoTRXNnhNV0LKiqdk2bQv6MB34l8zkI,1079
|
23
|
+
opengeodeweb_back-5.6.1rc1.dist-info/METADATA,sha256=jHCO_EcC8RAxNATGZvjw6xKlRKA0DozHpG0Fjh7xYs8,3059
|
24
|
+
opengeodeweb_back-5.6.1rc1.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
|
25
|
+
opengeodeweb_back-5.6.1rc1.dist-info/top_level.txt,sha256=tN1FZeLIVBrdja2-pbmhg5-tK-JILmmT9OeIBnhlUrQ,18
|
26
|
+
opengeodeweb_back-5.6.1rc1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|