OpenGeodeWeb-Back 5.6.0rc3__py3-none-any.whl → 5.6.1__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.
@@ -1,15 +1,24 @@
1
1
  {
2
2
  "route": "/allowed_objects",
3
- "methods": ["POST"],
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": ["string", "null"]
13
+ "type": [
14
+ "string",
15
+ "null"
16
+ ]
11
17
  }
12
18
  },
13
- "required": ["filename", "supported_feature"],
19
+ "required": [
20
+ "filename",
21
+ "supported_feature"
22
+ ],
14
23
  "additionalProperties": false
15
- }
24
+ }
@@ -6,7 +6,8 @@
6
6
  "type": "object",
7
7
  "properties": {
8
8
  "title": {
9
- "type": "string"
9
+ "type": "string",
10
+ "minLength": 1
10
11
  },
11
12
  "x": {
12
13
  "type": "number"
@@ -1,15 +1,22 @@
1
1
  {
2
2
  "route": "/geode_objects_and_output_extensions",
3
- "methods": ["POST"],
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": ["input_geode_object", "filename"],
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": ["POST"],
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": ["input_geode_object"],
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": ["POST"],
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": ["filename", "input_geode_object"],
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": ["POST"],
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": ["input_geode_object", "filename"],
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": ["POST"],
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": ["input_geode_object", "filename"],
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": ["POST"],
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": ["input_geode_object", "filename"],
17
+ "required": [
18
+ "input_geode_object",
19
+ "filename"
20
+ ],
14
21
  "additionalProperties": false
15
- }
22
+ }
@@ -6,10 +6,12 @@
6
6
  "type": "object",
7
7
  "properties": {
8
8
  "input_geode_object": {
9
- "type": "string"
9
+ "type": "string",
10
+ "minLength": 1
10
11
  },
11
12
  "filename": {
12
- "type": "string"
13
+ "type": "string",
14
+ "minLength": 1
13
15
  }
14
16
  },
15
17
  "required": [
@@ -6,14 +6,12 @@
6
6
  "type": "object",
7
7
  "properties": {
8
8
  "input_geode_object": {
9
- "type": [
10
- "string"
11
- ]
9
+ "type": "string",
10
+ "minLength": 1
12
11
  },
13
12
  "filename": {
14
- "type": [
15
- "string"
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": ["OPTIONS", "PUT"],
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": ["POST"],
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": ["input_geode_object", "filename"],
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.0rc3
3
+ Version: 5.6.1
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
@@ -0,0 +1,26 @@
1
+ opengeodeweb_back/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ opengeodeweb_back/app_config.py,sha256=bZIs0giTA0cYJJYbt25ZHYlHdsOy82h5xSxdOitgR4A,752
3
+ opengeodeweb_back/geode_functions.py,sha256=ei0eI3pWMqzrhgI5ta5HtnoRoNs-GCqtkXe5arAObZE,8906
4
+ opengeodeweb_back/geode_objects.py,sha256=4XH0TGujHw3LIBIzPLBa2eqxyfjVLo9hywKYxXEp-zU,24372
5
+ opengeodeweb_back/test_utils.py,sha256=gvRPOzin4nI5TKuB-AFgIxcekTOYM4h7yUYk0tYIZFI,820
6
+ opengeodeweb_back/utils_functions.py,sha256=18kp8M3bnrlu692qj-ymJJPA1hTpPjx_xl9oVi5qGyg,4120
7
+ opengeodeweb_back/routes/blueprint_routes.py,sha256=oDhoXIX5XIaaRa-_CEphwRmIxhuUYOS2spB2i1zOc8k,13818
8
+ opengeodeweb_back/routes/schemas/allowed_files.json,sha256=pRsGf39LiJpl3zEGLg4IqvRtm7iUx3Wq4Tb4tSFXGV0,234
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
+ opengeodeweb_back/routes/schemas/ping.json,sha256=MhI5jtrjMsAsfIKEzdY8p1HyV9xv4O3hYfESWw6tkyE,162
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.1.dist-info/LICENSE,sha256=LoTB-aqQvzTGxoTRXNnhNV0LKiqdk2bQv6MB34l8zkI,1079
23
+ opengeodeweb_back-5.6.1.dist-info/METADATA,sha256=ljkut35ZBSD5phkpJ5NbRg8g7JUo6Tt_9ltnuuXlnow,3056
24
+ opengeodeweb_back-5.6.1.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
25
+ opengeodeweb_back-5.6.1.dist-info/top_level.txt,sha256=tN1FZeLIVBrdja2-pbmhg5-tK-JILmmT9OeIBnhlUrQ,18
26
+ opengeodeweb_back-5.6.1.dist-info/RECORD,,
@@ -1,26 +0,0 @@
1
- opengeodeweb_back/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- opengeodeweb_back/app_config.py,sha256=bZIs0giTA0cYJJYbt25ZHYlHdsOy82h5xSxdOitgR4A,752
3
- opengeodeweb_back/geode_functions.py,sha256=ei0eI3pWMqzrhgI5ta5HtnoRoNs-GCqtkXe5arAObZE,8906
4
- opengeodeweb_back/geode_objects.py,sha256=4XH0TGujHw3LIBIzPLBa2eqxyfjVLo9hywKYxXEp-zU,24372
5
- opengeodeweb_back/test_utils.py,sha256=gvRPOzin4nI5TKuB-AFgIxcekTOYM4h7yUYk0tYIZFI,820
6
- opengeodeweb_back/utils_functions.py,sha256=18kp8M3bnrlu692qj-ymJJPA1hTpPjx_xl9oVi5qGyg,4120
7
- opengeodeweb_back/routes/blueprint_routes.py,sha256=oDhoXIX5XIaaRa-_CEphwRmIxhuUYOS2spB2i1zOc8k,13818
8
- opengeodeweb_back/routes/schemas/allowed_files.json,sha256=pRsGf39LiJpl3zEGLg4IqvRtm7iUx3Wq4Tb4tSFXGV0,234
9
- opengeodeweb_back/routes/schemas/allowed_objects.json,sha256=8JLtAI46eXeiJuiryS2geRVv0J1rGkFb87pRwtBZSZw,296
10
- opengeodeweb_back/routes/schemas/create_point.json,sha256=wkR0A0BFKvh3Knapjdi1_mDM7q3eoQiduLS-j6ciDSg,364
11
- opengeodeweb_back/routes/schemas/geode_objects_and_output_extensions.json,sha256=0t4YhdKxDlzcLh85JU85z6Pn5h8wlXVt3Zi4ZhXXmTQ,308
12
- opengeodeweb_back/routes/schemas/geographic_coordinate_systems.json,sha256=86QEBxAJXdMHulj2SyrxvAAwvyUq3mpKSazwASukeoM,242
13
- opengeodeweb_back/routes/schemas/inspect_file.json,sha256=7jmmLD2oZ2dxn5-2HqS6fU92eGM3FWBQdj3CjyYmGOA,285
14
- opengeodeweb_back/routes/schemas/missing_files.json,sha256=tJVdSM3CqYFZRC6eNW6Q3JG3RtoaZDxaZtbfx6djbX0,286
15
- opengeodeweb_back/routes/schemas/ping.json,sha256=MhI5jtrjMsAsfIKEzdY8p1HyV9xv4O3hYfESWw6tkyE,162
16
- opengeodeweb_back/routes/schemas/polygon_attribute_names.json,sha256=y0qDZ0v3zkzYuM-9jfBXU0aTUnWz2w0gXqes9Xs7PgE,296
17
- opengeodeweb_back/routes/schemas/polyhedron_attribute_names.json,sha256=FaW1kMC4D4LrdvCGMzWVM6d7zq1pxrr-YwdVdmaWx8k,299
18
- opengeodeweb_back/routes/schemas/save_viewable_file.json,sha256=7BXO8vsQrmqyEQ2uycm2Ift_EY7a0KocvnGEjYrQFcQ,368
19
- opengeodeweb_back/routes/schemas/texture_coordinates.json,sha256=iLlP6EQiLpzfKBXdrX3fmse_4V_QjblEDV2f2AMUM20,347
20
- opengeodeweb_back/routes/schemas/upload_file.json,sha256=sE6bxz3mJbSZlGmrnR_hZmcx0dvZGn3Wpnn6szRPxXQ,186
21
- opengeodeweb_back/routes/schemas/vertex_attribute_names.json,sha256=wijww9z7vVUIr1_3hMnR5efpMfW2-o2-QvcO_MVDefE,295
22
- opengeodeweb_back-5.6.0rc3.dist-info/LICENSE,sha256=LoTB-aqQvzTGxoTRXNnhNV0LKiqdk2bQv6MB34l8zkI,1079
23
- opengeodeweb_back-5.6.0rc3.dist-info/METADATA,sha256=RxDvT-EIb_iMbnUOZ1191N4mQyfL3apTZepr2JF4D-I,3059
24
- opengeodeweb_back-5.6.0rc3.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
25
- opengeodeweb_back-5.6.0rc3.dist-info/top_level.txt,sha256=tN1FZeLIVBrdja2-pbmhg5-tK-JILmmT9OeIBnhlUrQ,18
26
- opengeodeweb_back-5.6.0rc3.dist-info/RECORD,,